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.

Monitor Connection Status

Set Status Listener

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

Method

setOnConnectionStatusChangedListener(listener?: (status: RCIMIWConnectionStatus) => void): void;

Parameter Description

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

Code Example


engine?.setOnConnectionStatusChangedListener((status: RCIMIWConnectionStatus) => {
//...
});