ManagementListener

interface ManagementListener

Listener that will be registered by the management service so it can receive requests.

Functions

Link copied to clipboard
abstract fun onAnswerCallRequested(callId: CallId)

Requests to answer the call with the specified callId.

Link copied to clipboard
abstract fun onEndCallRequested(callId: CallId)

Requests to end the call with the specified callId.

Link copied to clipboard
abstract fun onMuteRequested()

Requests to mute calls.

Link copied to clipboard
abstract fun onPlayDtmfToneRequested(callId: CallId, dtmfTone: DtmfTone)

Requests to play the specified DTMF dtmfTone on the call with the specified callId.

Link copied to clipboard
abstract fun onRejectCallRequested(callId: CallId)

Requests to reject the call with the specified callId.

Link copied to clipboard
abstract fun onSetCallOnHoldRequested(callId: CallId, onHold: Boolean)

Requests to set the hold state of the call with the specified callId to onHold.

Link copied to clipboard
abstract fun onUnmuteRequested()

Requests to unmute calls.