-
Notifications
You must be signed in to change notification settings - Fork 2
CallEventListener
void onRinging(CallRingingEvent callRingingEvent)void onEarlyMedia(CallEarlyMediaEvent callEarlyMediaEvent)void onEstablished(CallEstablishedEvent callEstablishedEvent)void onHangup(CallHangupEvent callHangupEvent)void onError(ErrorEvent errorEvent)void onCallRecordingStarted(CallRecordingStartedEvent callRecordingStartedEvent)void onReconnecting(ReconnectingEvent reconnectingEvent)void onReconnected(ReconnectedEvent reconnectedEvent)void onTalkingWhileMuted(TalkingWhileMutedEvent talkingWhileMutedEvent)
This callback method is triggered when a call enters the ringing state.
-
callRingingEvent:CallRingingEvent- Event object representing the ringing state. This event does not include any additional data.
N/A
This callback method is triggered when early media playback becomes available prior to the call being established.
-
callEarlyMediaEvent:CallEarlyMediaEvent- Event object representing early media playback. This event does not include any additional data.
N/A
This callback method is triggered when a call is successfully established.
-
callEstablishedEvent:CallEstablishedEvent- Event object representing the established call state. This event does not include any additional data.
N/A
This callback method is triggered when the call terminates, either successfully or due to an error.
-
callHangupEvent:CallHangupEvent- Event object containing details about the call termination, including error codes.
N/A
This callback method is triggered when a non-terminating error occurs during the call.
-
errorEvent:ErrorEvent- Event object containing details about the error, including error codes.
N/A
This callback method is triggered when the call recording starts.
-
callRecordingStartedEvent:CallRecordingStartedEvent- Event object containing details about the recording type when call recording is started.
N/A
This callback method is triggered when the call initiates the reconnecting process.
-
reconnectingEvent:ReconnectingEvent- Event object representing the initiation of the call's reconnecting process. This event does not contain any additional data.
N/A
This callback method is triggered when the call successfully reconnects.
-
reconnectedEvent:ReconnectedEvent- Event object representing the successful reconnection of the call. This event does not contain any additional data.
N/A
This callback method is triggered when the local participant is talking while muted and the detectTalkingWhileMuted option is enabled in AudioOptions.
-
talkingWhileMutedEvent:TalkingWhileMutedEvent- Event object representing the detection of talking while muted. This event does not include any additional data.
N/A