Skip to main content

Starting March 27, 2026, RC is rebranded as Nexconn. Existing RC SDK customers can continue using this documentation. New customers should refer to the Nexconn developer documentation.

Listen to Connection Status

Set Status Listener

When the connection status between the SDK and RC servers changes, developers can handle it using the following method.

Method

Function(RCIMIWConnectionStatus? status)? onConnectionStatusChanged;

Parameter Description

Parameter NameParameter TypeDescription
statusRCIMIWConnectionStatusThe connection status between the SDK and RC servers

Code Example

engine?.onConnectionStatusChanged = (RCIMIWConnectionStatus? status) {
//...
};