-
Notifications
You must be signed in to change notification settings - Fork 2
ApplicationCallEventListener
void onRinging(CallRingingEvent callRingingEvent)
void onEarlyMedia(CallEarlyMediaEvent callEarlyMediaEvent)
void onEstablished(CallEstablishedEvent callEstablishedEvent)
void onHangup(CallHangupEvent callHangupEvent)
void onError(ErrorEvent errorEvent)
void onCameraVideoAdded(CameraVideoAddedEvent cameraVideoAddedEvent)
void onCameraVideoUpdated(CameraVideoUpdatedEvent cameraVideoUpdatedEvent)
void onCameraVideoRemoved()
void onScreenShareAdded(ScreenShareAddedEvent screenShareAddedEvent)
void onScreenShareRemoved(ScreenShareRemovedEvent screenShareRemovedEvent)
void onConferenceJoined(ConferenceJoinedEvent conferenceJoinedEvent)
void onConferenceLeft(ConferenceLeftEvent conferenceLeftEvent)
void onParticipantJoining(ParticipantJoiningEvent participantJoiningEvent)
void onParticipantJoined(ParticipantJoinedEvent participantJoinedEvent)
void onParticipantLeft(ParticipantLeftEvent participantLeftEvent)
void onParticipantCameraVideoAdded(ParticipantCameraVideoAddedEvent participantCameraVideoAddedEvent)
void onParticipantCameraVideoRemoved(ParticipantCameraVideoRemovedEvent participantCameraVideoRemovedEvent)
void onParticipantScreenShareAdded(ParticipantScreenShareAddedEvent participantScreenShareAddedEvent)
void onParticipantScreenShareRemoved(ParticipantScreenShareRemovedEvent participantScreenShareRemovedEvent)
void onParticipantMuted(ParticipantMutedEvent participantMutedEvent)
void onParticipantUnmuted(ParticipantUnmutedEvent participantUnmutedEvent)
void onParticipantDeaf(ParticipantDeafEvent participantDeafEvent)
void onParticipantUndeaf(ParticipantUndeafEvent participantUndeafEvent)
void onParticipantStartedTalking(ParticipantStartedTalkingEvent participantStartedTalkingEvent)
void onParticipantStoppedTalking(ParticipantStoppedTalkingEvent participantStoppedTalkingEvent)
void onDialogJoined(DialogJoinedEvent dialogJoinedEvent)
void onDialogLeft(DialogLeftEvent dialogLeftEvent)
void onReconnecting(ReconnectingEvent reconnectingEvent)
void onReconnected(ReconnectedEvent reconnectedEvent)
void onCallRecordingStarted(CallRecordingStartedEvent callRecordingStartedEvent)
void onCallRecordingStopped(CallRecordingStoppedEvent callRecordingStoppedEvent)
void onConferneceRecordingStarted(ConferenceRecordingStartedEvent conferenceRecordingStartedEvent)
void onConferenceRecordingStopped(ConferenceRecordingStoppedEvent conferenceRecordingStoppedEvent)
void onDialogRecordingStarted(DialogRecordingStartedEvent dialogRecordingStartedEvent)
void onDialogRecordingStopped(DialogRecordingStoppedEvent dialogRecordingStoppedEvent)
Method that is triggered when a call is ringing
-
callRingingEvent
:CallRingingEvent
- Event instance which is used when a call is ringing. Does not contain any additional data.
N/A
Method that is triggered when there is media to be played before establishing a call.
-
callEarlyMediaEvent
:CallEarlyMediaEvent
- Event instance which is used when there is media to be played before establishing a call. Does not contain any additional data.
N/A
Method that is triggered when a call is established.
-
callEstablishedEvent
:CallEstablishedEvent
- Event instance relevant for establishing a call. Does not contain any additional data.
N/A
Method that is triggered when a call has been hung up. This covers both normal hang up and when a call has been hung up because of an error.
-
callHangupEvent
:CallHangupEvent
- Event instance which contains data relevant to the hangup. Contains data about the hangup error code, which informs if the call ended without an error or with a certain error ( depending on the code).
N/A
Method that is triggered when a call has encountered an error which does not hang up the call.
-
errorEvent
:ErrorEvent
- Event instance which contains data relevant to the error. Contains data about the error code.
N/A
Method that is triggered when camera video has been added locally on a call.
-
cameraVideoAddedEvent
:CameraVideoAddedEvent
- Event instance which contains the local camera RTC video track.
N/A
Method that is triggered when camera video has been updated (in any way changed) locally on a call.
-
cameraVideoUpdatedEvent
:CameraVideoUpdatedEvent
- Event instance which contains the updated local camera RTC video track.
N/A
Method that is triggered when camera video has been removed locally on a call.
none
N/A
Method that is triggered when screen sharing has been started locally on a call.
-
screenShareAddedEvent
:ScreenShareAddedEvent
- Event instance which contains the local screenshare RTC video track.
N/A
Method that is triggered when screen sharing has been stopped locally on a call.
-
screenShareRemovedEvent
:ScreenShareRemovedEvent
- Event instance which contains the reason for the screenshare removal.
N/A
Method that is triggered when the call has been added into a conference.
-
conferenceJoinedEvent
:ConferenceJoinedEvent
- Event instance which contains data about the conference that has been joined. Contains data about the conference id, name, and the participants already inside the conference.
N/A
Method that is triggered when the call has been removed from a conference.
-
conferenceLeftEvent
:ConferenceLeftEvent
- Event instance which contains data about the manner in which the conference has been left. Contains data about the error code that the conference has been left with, be it no error or other.
N/A
Method that is triggered when another participant is being added to the conference.
-
participantJoiningEvent
:ParticipantJoiningEvent
- Event instance which contains data about the participant that is currently trying to join the conference.
N/A
Method that is triggered when another participant has been added to the conference.
-
participantJoinedEvent
:ParticipantJoinedEvent
- Event instance which contains data about the participant that has joined the conference.
N/A
Method that is triggered when another participant has left the conference.
-
participantLeftEvent
:ParticipantLeftEvent
- Event instance which contains data about the participant that has left the conference.
N/A
Method that is triggered when another participant has added their camera video to the conference.
-
participantCameraVideoAddedEvent
:ParticipantCameraVideoAddedEvent
- Event instance which contains data about the added remote camera video and which specific participant added it.
N/A
Method that is triggered when another participant has removed their camera video from the conference.
-
participantCameraVideoRemovedEvent
:ParticipantCameraVideoRemovedEvent
- Event instance which contains data describing which participant removed their camera video.
N/A
Method that is triggered when another participant has shared their screen to the conference.
-
participantScreenShareAddedEvent
:ParticipantScreenShareAddedEvent
- Event instance which contains data about the added remote screenshare video and which specific participant added it.
N/A
Method that is triggered when another participant has removed their shared screen from the conference.
-
participantScreenShareRemovedEvent
:ParticipantScreenShareRemovedEvent
- Event instance which contains data describing which participant removed their screenshare video.
N/A
Method that is triggered when another participant has been muted in the conference.
-
participantMutedEvent
:ParticipantMutedEvent
- Event instance which contains data describing which participant has been muted.
N/A
Method that is triggered when another participant has been unmuted in the conference.
-
participantUnmutedEvent
:ParticipantUnmutedEvent
- Event instance which contains data describing which participant has been unmuted.
N/A
Method that is triggered when another participant has been deafened in the conference.
-
participantDeafEvent
:ParticipantDeafEvent
- Event instance which contains data describing which participant has been deafened.
N/A
Method that is triggered when another participant has been undeafened in the conference.
-
participantUndeafEvent
:ParticipantUndeafEvent
- Event instance which contains data describing which participant has been undeafened.
N/A
Method that is triggered when another participant starts talking in the conference.
-
participantStartedTalkingEvent
:ParticipantStartedTalkingEvent
- Event instance which contains data which participant has started talking.
N/A
Method that is triggered when another participant stops talking in the conference.
-
participantStoppedTalkingEvent
:ParticipantStoppedTalkingEvent
- Event instance which contains data which participant has stopped talking.
N/A
Method that is triggered when the call joins a dialog.
-
dialogJoinedEvent
:DialogJoinedEvent
- Event instance which contains data about the joined dialog, including the dialog id and the remote participant.
N/A
Method that is triggered when the call leaves the dialog.
-
dialogLeftEvent
:DialogLeftEvent
- Event instance which contains data about the manner in which the dialog has been left, including the error code that the dialog has been left with, be it no error or other.
N/A
Method that is triggered when the call initiates reconnecting process.
-
reconnectingEvent
:ReconnectingEvent
- Event instance which is used when the call initiates the reconnecting process. Does not contain any additional data.
N/A
Method that is triggered when the call has been successfully reconnected.
-
reconnectedEvent
:ReconnectedEvent
- Event instance which is used when the call has been reconnected. Does not contain any additional data.
N/A
Method that is triggered when the call recording has been started.
-
callRecordingStartedEvent
:CallRecordingStartedEvent
- Event instance which contains data about the current recording type in the call when the call recording is started.
N/A
Method that is triggered when the call recording has been stopped.
-
callRecordingStoppedEvent
:CallRecordingStoppedEvent
- Event instance which is used when a call recording has been stopped. Does not contain any additional data.
N/A
Method that is triggered when the conference recording has been started.
-
conferenceRecordingStartedEvent
:ConferenceRecordingStartedEvent
- Event instance which contains data about the current recording type in the conference when the conference recording is started.
N/A
Method that is triggered when the conference recording has been stopped.
-
conferenceRecordingStoppedEvent
:ConferenceRecordingStoppedEvent
- Event instance which is used when a conference recording has been stopped. Does not contain any additional data.
N/A
Method that is triggered when the dialog recording has been started.
-
dialogRecordingStartedEvent
:DialogRecordingStartedEvent
- Event instance which contains data about the current recording type in the dialog when the dialog recording is started.
N/A
Method that is triggered when the dialog recording has been stopped.
-
dialogRecordingStoppedEvent
:DialogRecordingStoppedEvent
- Event instance which is used when a dialog recording has been stopped. Does not contain any additional data.
N/A