setEventHandler abstract method

void setEventHandler(
  1. RtcEngineEventHandler handler
)

Adds event handlers. The SDK uses the RtcEngineEventHandler class to send callbacks to the app. The app inherits the methods of this class to receive these callbacks. All methods in this interface class have default (empty) implementations. Therefore, the application can only inherit some required events. In the callbacks, avoid time-consuming tasks or calling APIs that can block the thread, such as the sendStreamMessage method. Otherwise, the SDK may not work properly.

Param handler Callback events to be added.

Implementation

void setEventHandler(RtcEngineEventHandler handler);