aboutsummaryrefslogtreecommitdiff
path: root/Captura/Core Extensions/Notification+AppEvents.swift
blob: be06a2f3676165f7a2f6df16e7b7ea26b6862278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Foundation

extension Notification.Name {
  static let startAreaSelection = Notification.Name("startSelectingArea")
  static let startRecording = Notification.Name("startRecording")
  static let stopRecording = Notification.Name("stopRecording")
  static let finalizeRecording = Notification.Name("finalizeRecording")
  static let reset = Notification.Name("reset")
  static let failedToStart = Notification.Name("failedToStart")
  static let receivedFrame = Notification.Name("receivedFrame")
  static let failedtoUpload = Notification.Name("failedToUpload")
  static let reloadConfiguration = Notification.Name("reloadConfiguration")
  static let setCaptureSessionConfiguration = Notification.Name("setCaptureSessionConfiguration")
  static let setConfiguration = Notification.Name("setConfiguration")
}