LiveEventDelegate
public protocol LiveEventDelegate : AnyObject
A class that provides event listener methods that are invoked when actions are taken in a live event.
Since
1.0.0-
Invoked when a participant has entered the live event.
Since
1.0.0Declaration
Swift
func didParticipantEnter(_ liveEvent: LiveEvent, participant: Participant)
-
Invoked when a participant has exited the live event.
Since
1.0.0Declaration
Swift
func didParticipantExit(_ liveEvent: LiveEvent, participant: Participant)
-
Invoked when the live event is ready.
Since
1.0.0Declaration
Swift
func didLiveEventReady(_ liveEvent: LiveEvent)
-
Invoked when a live event has started.
Since
1.0.0Declaration
Swift
func didLiveEventStart(_ liveEvent: LiveEvent)
-
Invoked when a live event has ended.
Since
1.0.0Declaration
Swift
func didLiveEventEnd(_ liveEvent: LiveEvent)
-
Invoked when the live event information has been updated.
Since
1.0.0Declaration
Swift
func didLiveEventInfoUpdate(_ liveEvent: LiveEvent)
-
Invoked when a user has been disconnected from the live event due to the given error.
Since
1.0.0Declaration
Swift
func didDisconnect(_ liveEvent: LiveEvent, error: Error)
-
Undocumented
Declaration
Swift
func didUpdateCustomItems(_ liveEvent: LiveEvent, customItems: [String : String], updatedKeys: [String])
-
Undocumented
Declaration
Swift
func didDeleteCustomItems(_ liveEvent: LiveEvent, customItems: [String : String], deletedKeys: [String])