|
视频通话插件 - iOS v2601.0
|
多方通话 2.0 事件回调协议 更多...
#include <JCallCallback.h>
实例方法 | |
| (void) | - onJoin:reasonCode: |
| (void) | - onLeave:reasonCode: |
| (void) | - onInviteResult:result:reason: |
| (void) | - onCancelInviteResult:result:reason: |
| (void) | - onAcceptInviteResult:result:reason: |
| (void) | - onRejectInviteResult:result:reason: |
| (void) | - onInviteReceived: |
| (void) | - onInviteCanceled: |
| (void) | - onInviteAccepted: |
| (void) | - onInviteRejected: |
| 实例方法 继承自 <JCCCommonCallback> | |
| (void) | - onLogin:reason: |
| 登录结果回调 | |
| (void) | - onLogout: |
| 登出回调 | |
| (void) | - onOnlineMessageSendResult:operatorId: |
| 在线消息发送结果 | |
| (void) | - onOnlineMessageReceived:userId: |
| 收到在线消息 | |
| (void) | - onUploadFileResult:response: |
| 文件上传成功 | |
| (void) | - onUploadFileError:error: |
| 文件上传失败 | |
| (void) | - onMessageInCallReceived:content:fromUserId: |
| 接收通话中消息的回调 | |
| (void) | - onMessageSendResult:result:error: |
| (void) | - onError:errorCodeDetail: |
| (void) | - onSystemPhoneStateChanged:oldState: |
| (BOOL) | - onViewEvent: |
多方通话 2.0 事件回调协议
| - (void) onAcceptInviteResult: | (int) | operatorId | |
| result: | (bool) | result | |
| reason: | (NSString *) | reason |
接受邀请结果回调
| operatorId | 操作id,对应 acceptInvite 的返回值 |
| result | 加入通话是否成功
|
| reason | 接受邀请失败原因 |
| - (void) onCancelInviteResult: | (int) | operatorId | |
| result: | (bool) | result | |
| reason: | (NSString *) | reason |
取消邀请结果回调
| operatorId | 操作id,对应 cancelInvite 的返回值 |
| result | 加入通话是否成功
|
| reason | 取消邀请失败原因 |
| - (void) onInviteAccepted: | (JRTCCallExtraParam *) | param |
对方接受邀请通知
| param | 回调参数 |
| - (void) onInviteCanceled: | (JRTCCallExtraParam *) | param |
对方取消邀请通知
| param | 回调参数 |
| - (void) onInviteReceived: | (JRTCCallExtraParam *) | param |
收到邀请通知
| param | 回调参数 |
| - (void) onInviteRejected: | (JRTCCallExtraParam *) | param |
对方拒绝邀请通知
| param | 其他参数 |
| - (void) onInviteResult: | (int) | operatorId | |
| result: | (bool) | result | |
| reason: | (NSString *) | reason |
邀请结果回调
| operatorId | 操作id,对应 invite:inviteParam: 的返回值 |
| result | 加入通话是否成功
|
| reason | 邀请失败原因 |
| - (void) onJoin: | (bool) | result | |
| reasonCode: | (JCCReasonCode) | reasonCode |
| - (void) onLeave: | (NSString *) | serialId | |
| reasonCode: | (JCCReasonCode) | reasonCode |
| - (void) onRejectInviteResult: | (int) | operatorId | |
| result: | (bool) | result | |
| reason: | (NSString *) | reason |
拒绝邀请结果回调
| operatorId | 操作id,对应 rejectInvite 的返回值 |
| result | 加入通话是否成功
|
| reason | 拒绝邀请失败原因 |