Skip to content

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

ParameterTypeDescription
callIdstringIdentifier of the reconnected call

Notes

  • Use this event to restore normal in-call UI state
  • If reconnection cannot complete, expect disconnect or error flows

Built with VitePress.