MeetingHistoryEventName
@objc
public enum MeetingHistoryEventName : Int, CaseIterable, CustomStringConvertible
MeetingHistoryEventName is a meeting history state which are important events to note in the history.
Thus, this also includes events in EventName
-
The microphone was selected.
Declaration
Swift
case audioInputSelected -
The microphone selection or access failed.
Declaration
Swift
case audioInputFailed -
The camera was selected.
Declaration
Swift
case videoInputSelected -
The camera selection or access failed.
Declaration
Swift
case videoInputFailed -
The meeting failed to start.
Declaration
Swift
case meetingStartFailed -
The meeting will start.
Declaration
Swift
case meetingStartRequested -
The meeting started.
Declaration
Swift
case meetingStartSucceeded -
The meeting ended.
Declaration
Swift
case meetingEnded -
The meeting failed.
Declaration
Swift
case meetingFailed -
The meeting reconnected.
Declaration
Swift
case meetingReconnected -
The video client signaling websocket opened
Declaration
Swift
case videoClientSignalingOpened -
The video client signaling websocket failed or closed with an error.
Declaration
Swift
case videoClientSignalingDropped -
The content share signaling websocket opened
Declaration
Swift
case contentShareSignalingOpened -
The content share signaling websocket failed or closed with an error.
Declaration
Swift
case contentShareSignalingDropped -
The video client ICE candidate gathering has finished
Declaration
Swift
case videoClientIceGatheringCompleted -
The content share ICE candidate gathering has finished
Declaration
Swift
case contentShareIceGatheringCompleted -
Content share start was requested.
Declaration
Swift
case contentShareStartRequested -
Content share started successfully.
Declaration
Swift
case contentShareStarted -
Content share stopped.
Declaration
Swift
case contentShareStopped -
Content share failed.
Declaration
Swift
case contentShareFailed -
The application state is changed
Declaration
Swift
case appStateChanged -
The application memory is low
Declaration
Swift
case appMemoryLow -
Voice focus enabled
Declaration
Swift
case voiceFocusEnabled -
Voice focus disabled
Declaration
Swift
case voiceFocusDisabled -
Failed to enable voice focus
Declaration
Swift
case voiceFocusEnableFailed -
Failed to disable voice focus
Declaration
Swift
case voiceFocusDisableFailed -
Audio interruption began
Declaration
Swift
case audioInterruptionBegan -
Audio interruption ended
Declaration
Swift
case audioInterruptionEnded -
Video interruption began
Declaration
Swift
case videoInterruptionBegan -
Video interruption ended
Declaration
Swift
case videoInterruptionEnded -
Network connection type is changed
Declaration
Swift
case networkConnectionTypeChanged -
unknown
Declaration
Swift
case unknown -
Declaration
Swift
public var description: String { get }