Skip to content

On Reconnection

Fired when the SDK successfully restores the session connection after an interruption. Remove the reconnecting indicator and return to normal UI.

Event Registration

fun setReconnectionListener(
  fn: () -> Unit
): Subscription

Usage Example

 client.setReconnectionListener {
     println("Session Reconnected")
 }

Event Data

This event carries no parameters.

Notes

  • This event indicates the session is fully restored and events will resume normally
  • Remove any reconnecting indicator shown during the onReconnecting phase
  • Active calls may have separate media reconnection events — see voice media events for call-level recovery

Built with VitePress.