On Call Media Reconnection
Fired when call media has successfully reconnected after interruption.
Event Registration
fun setOnCallMediaReconnectionListener(
fn: (callId: String) -> Unit
): Subscription
Usage Example
client.setOnCallMediaReconnectionListener { legId ->
println("Received call media reconnection for Call $legId")
}
Event Data
| Parameter | Type | Description |
|---|---|---|
callId | string | Identifier of the reconnected call |
Notes
- Use this event to restore normal in-call UI state
- If reconnection cannot complete, expect disconnect or error flows
Related Events
onCallMediaDisconnect- Fired when media disconnectsonCallMediaReconnecting- Fired when reconnection starts