본문으로 건너뛰기

SDK

연결 이벤트 수신 설정

public void setConnectionEvent(ConnectionEvent connectionEvent)

연결 이벤트

public interface ConnectionEvent {
// 에러
void onError(int errorType);

// 연결
void onConnected(String status);

// 재연결
void onReconnected(String status);

// 연결 해제
void onDisconnected(String status);
}