On Call Media Reconnecting
Fired when the SDK has started reconnecting call media after interruption.
Event Registration
fun setOnCallMediaReconnectingListener(
fn: (callId: String) -> Unit
): Subscription
Usage Example
client.setOnCallMediaReconnectingListener { legId ->
println("Received call media reconnecting for Call $legId")
}
Event Data
| Parameter | Type | Description |
|---|---|---|
callId | string | Identifier of the call being reconnected |
Notes
- Use this event to show in-call recovery state in the UI
- Successful reconnection is indicated by
onCallMediaReconnection
Related Events
onCallMediaDisconnect- Fired when media disconnectsonCallMediaReconnection- Fired when media reconnection succeeds