DarwinNotificationCenter.swift 780 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // DarwinNotificationCenter.swift
  3. // Broadcast Extension
  4. //
  5. // Created by Alex-Dan Bumbu on 23/03/2021.
  6. // Copyright © 2021 8x8, Inc. All rights reserved.
  7. //
  8. import Foundation
  9. enum DarwinNotification: String {
  10. case broadcastStarted = "iOS_BroadcastStarted"
  11. case broadcastStopped = "iOS_BroadcastStopped"
  12. }
  13. class DarwinNotificationCenter {
  14. static let shared = DarwinNotificationCenter()
  15. private let notificationCenter: CFNotificationCenter
  16. init() {
  17. notificationCenter = CFNotificationCenterGetDarwinNotifyCenter()
  18. }
  19. func postNotification(_ name: DarwinNotification) {
  20. CFNotificationCenterPostNotification(notificationCenter, CFNotificationName(rawValue: name.rawValue as CFString), nil, nil, true)
  21. }
  22. }