Skip to content
Snippets Groups Projects
Select Git revision
  • 4fef1f7f786291651afdac3728743e40d48a0604
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

BroadcastMessage.swift

Blame
  • Session+Notifications.swift 278 B
    import Foundation
    
    extension Session {
        public func registerNotifications(_ token: Data) throws {
            try client.bindings.registerNotifications(token)
        }
    
        public func unregisterNotifications() throws {
            try client.bindings.unregisterNotifications()
        }
    }