본문으로 건너뛰기

SDK

일반

gitpleLiveChatClient.on('error', () => {
// handle event
});

연결

// 연결 성공
gitpleLiveChatClient.connection.on('connected', () => {
// handle event
});

// 재연결 시작
gitpleLiveChatClient.connection.on('reconnect_start', () => {
// handle event
});

// 재연결 성공
gitpleLiveChatClient.connection.on('reconnect_success', () => {
// handle event
});

// 재연결 실패
gitpleLiveChatClient.connection.on('reconnect_failed', () => {
// handle event
});

// 연결 해제
gitpleLiveChatClient.connection.on('disconnected', () => {
// handle event
});