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
): SubscriptionUsage 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
onReconnectingphase - Active calls may have separate media reconnection events — see voice media events for call-level recovery
Related Actions
createSession- Create or re-establish a session
Related Events
onReconnecting- Fired when session reconnection startsonSessionError- Fired when a session error occurs