EVENT | 설명 |
SDK 내부 오류 발생 | |
SDK가 ready 상태 | |
반복되는 로그인으로 인해 현재 사용자가 방에서 제거되었음 | |
사용자가 통화를 수락 | |
사용자가 통화에 참여 | |
사용자가 통화를 종료 | |
사용자가 통화를 거절 | |
초대된 사용자가 응답하지 않았음 | |
초대된 사용자가 통화 중 | |
통화 시간 초과(초대 대상자가 수신) | |
원격 사용자가 카메라를 켜거나 끔 | |
원격 사용자가 마이크를 켜거나 끔 | |
원격 사용자가 통화 볼륨을 조정 | |
그룹 통화 초대 목록이 업데이트되었음 | |
통화에 초대되었음 | |
통화가 취소되었음(초대 대상자가 수신함) | |
통화가 종료되었음 | |
장치 목록이 업데이트되었음 | |
통화 유형이 변경되었음 |
let onError = function(error) {console.log(error)};tuiCallEngine.on(TUICallEvent.ERROR, onError);
let onSDKReady = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.SDK_READY, onSDKReady);
let handleOnKickedOut = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.KICKED_OUT, handleOnKickedOut);
let handleUserAccept = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.USER_ACCEPT, handleUserAccept);
let handleUserEnter = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.USER_ENTER, handleUserEnter);
let handleUserLeave = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.USER_LEAVE, handleUserLeave);
let handleInviteeReject = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.REJECT, handleInviteeReject);
let handleNoResponse = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.NO_RESP, handleNoResponse);
let handleLineBusy = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.LINE_BUSY, handleLineBusy);
let handleCallingTimeout = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.CALLING_TIMEOUT, handleCallingTimeout);
let handleUserVideoChange = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.USER_VIDEO_AVAILABLE, handleUserVideoChange);
let handleUserAudioChange = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.USER_AUDIO_AVAILABLE, handleUserAudioChange);
let handleUserVoiceVolumeChange = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.USER_VOICE_VOLUME, handleUserVoiceVolumeChange);
let handleGroupInviteeListUpdate = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.GROUP_CALL_INVITEE_LIST_UPDATE, handleGroupInviteeListUpdate);
let handleNewInvitationReceived = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.INVITED, handleNewInvitationReceived);
let handleCallingCancel = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.CALLING_CANCEL, handleCallingCancel);
let handleCallingEnd = function(event) {console.log(event)};tuiCallEngine.on(TUICallEvent.CALLING_END, handleCallingEnd);
let handleDeviceUpdated = function({ microphoneList, cameraList, currentMicrophoneID, currentCameraID }) {console.log(microphoneList, cameraList, currentMicrophoneID, currentCameraID)};tuiCallEngine.on(TUICallEvent.DEVICED_UPDATED, handleDeviceUpdated);
let handleCallTypeChanged = function({ oldCallType, newCallType }) {console.log(oldCallType, newCallType)};tuiCallEngine.on(TUICallEvent.CALL_TYPE_CHANGED, handleDeviceUpdated);
문제 해결에 도움이 되었나요?