|
| delegate void | OnGetMessageDelegate (RCIMMessage message) |
| |
| virtual void | destroy () |
| | 销毁引擎 更多...
|
| |
| abstract void | getMessageById (int messageId, OnGetMessageDelegate onGetMessage) |
| | 根据消息 id 获取消息体(本地数据库索引唯一值)。 更多...
|
| |
| abstract void | getMessageByUId (String messageUId, OnGetMessageDelegate onGetMessage) |
| | 通过全局唯一 id 获取消息实体。 更多...
|
| |
| abstract int | connect (string token, int timeout) |
| | 连接融云服务器,在整个应用程序全局,只需要调用一次。调用此接口返回非业务错误码时,SDK 会启动重连机制进行重连;如果仍没有连接成功,会在设备网络状态变化时再次进行重连 更多...
|
| |
| abstract int | disconnect (bool receivePush) |
| | 断开链接。注:因为 SDK 在前后台切换或者网络出现异常都会自动重连,保证连接可靠性。 所以除非您的 App 逻辑需要登出,否则一般不需要调用此方法进行手动断开 更多...
|
| |
| abstract RCIMTextMessage | createTextMessage (RCIMConversationType type, string targetId, string channelId, string text) |
| | 构建文本消息 更多...
|
| |
| abstract RCIMImageMessage | createImageMessage (RCIMConversationType type, string targetId, string channelId, string path) |
| | 构建图片消息 更多...
|
| |
| abstract RCIMFileMessage | createFileMessage (RCIMConversationType type, string targetId, string channelId, string path) |
| | 构建文件消息 更多...
|
| |
| abstract RCIMSightMessage | createSightMessage (RCIMConversationType type, string targetId, string channelId, string path, int duration) |
| | 构建小视频消息 更多...
|
| |
| abstract RCIMVoiceMessage | createVoiceMessage (RCIMConversationType type, string targetId, string channelId, string path, int duration) |
| | 构建语音消息 (高清语音) 更多...
|
| |
| abstract RCIMReferenceMessage | createReferenceMessage (RCIMConversationType type, string targetId, string channelId, RCIMMessage referenceMessage, string text) |
| | 构建引用消息 更多...
|
| |
| abstract RCIMGIFMessage | createGIFMessage (RCIMConversationType type, string targetId, string channelId, string path) |
| | 构建 GIF 消息 更多...
|
| |
| abstract RCIMCustomMessage | createCustomMessage (RCIMConversationType type, string targetId, string channelId, RCIMCustomMessagePolicy policy, string messageIdentifier, Dictionary< string, string > fields) |
| | 构建自定义消息 更多...
|
| |
| abstract RCIMLocationMessage | createLocationMessage (RCIMConversationType type, string targetId, string channelId, double longitude, double latitude, string poiName, string thumbnailPath) |
| | 构建位置消息 更多...
|
| |
| abstract int | sendMessage (RCIMMessage message) |
| | 发送普通消息 更多...
|
| |
| abstract int | sendMediaMessage (RCIMMediaMessage message) |
| | 发送媒体消息 更多...
|
| |
| abstract int | cancelSendingMediaMessage (RCIMMediaMessage message) |
| | 取消发送媒体消息 更多...
|
| |
| abstract int | downloadMediaMessage (RCIMMediaMessage message) |
| | 下载媒体消息 更多...
|
| |
| abstract int | cancelDownloadingMediaMessage (RCIMMediaMessage message) |
| | 取消下载媒体消息 更多...
|
| |
| abstract int | loadConversation (RCIMConversationType type, string targetId, string channelId) |
| | 加载某个会话 更多...
|
| |
| abstract int | loadConversations (List< RCIMConversationType > conversationTypes, string channelId, long startTime, int count) |
| | 加载某些会话 更多...
|
| |
| abstract int | removeConversation (RCIMConversationType type, string targetId, string channelId) |
| | 移除某个会话 更多...
|
| |
| abstract int | removeConversations (List< RCIMConversationType > conversationTypes, string channelId) |
| | 根据会话类型移除会话 更多...
|
| |
| abstract int | loadUnreadCount (RCIMConversationType type, string targetId, string channelId) |
| | 加载某个会话的未读数。注:不支持聊天室! 更多...
|
| |
| abstract int | loadTotalUnreadCount (string channelId) |
| | 加载所有未读数 更多...
|
| |
| abstract int | loadUnreadMentionedCount (RCIMConversationType type, string targetId, string channelId) |
| | 获取会话中未读的 @ 消息。注:不支持聊天室! 更多...
|
| |
| abstract int | loadUltraGroupAllUnreadCount () |
| | 获取当前用户加入的所有超级群会话的未读消息数的总和 更多...
|
| |
| abstract int | loadUltraGroupAllUnreadMentionedCount () |
| | 获取当前用户加入的所有超级群会话中的未读 @ 消息数的总和 更多...
|
| |
| abstract int | loadUltraGroupUnreadCount (string targetId) |
| | 获取指定会话的未读消息数 更多...
|
| |
| abstract int | loadUltraGroupUnreadMentionedCount (string targetId) |
| | 获取超级群会话中被 @ 的消息数 更多...
|
| |
| abstract int | loadUnreadCountByConversationTypes (List< RCIMConversationType > conversationTypes, string channelId, bool contain) |
| | 根据会话类型加载未读数。注:不支持聊天室! 更多...
|
| |
| abstract int | clearUnreadCount (RCIMConversationType type, string targetId, string channelId, long timestamp) |
| | 清除某个会话中的未读消息数。注:不支持聊天室! 更多...
|
| |
| abstract int | saveDraftMessage (RCIMConversationType type, string targetId, string channelId, string draft) |
| | 保存会话草稿信息 更多...
|
| |
| abstract int | loadDraftMessage (RCIMConversationType type, string targetId, string channelId) |
| | 获取会话中的草稿信息 更多...
|
| |
| abstract int | clearDraftMessage (RCIMConversationType type, string targetId, string channelId) |
| | 删除指定会话中的草稿信息 更多...
|
| |
| abstract int | loadBlockedConversations (List< RCIMConversationType > conversationTypes, string channelId) |
| | 获取免打扰的会话列表 更多...
|
| |
| abstract int | changeConversationTopStatus (RCIMConversationType type, string targetId, string channelId, bool top) |
| | 设置会话的置顶状态。若会话不存在,调用此方法 SDK 自动创建会话并置顶 更多...
|
| |
| abstract int | loadConversationTopStatus (RCIMConversationType type, string targetId, string channelId) |
| | 获取会话的置顶状态 更多...
|
| |
| abstract int | syncConversationReadStatus (RCIMConversationType type, string targetId, string channelId, long timestamp) |
| | 同步会话阅读状态 更多...
|
| |
| abstract int | sendTypingStatus (RCIMConversationType type, string targetId, string channelId, string currentType) |
| | 向会话中发送正在输入的状态,目前只支持单聊 更多...
|
| |
| abstract int | loadMessages (RCIMConversationType type, string targetId, string channelId, long sentTime, RCIMTimeOrder order, RCIMMessageOperationPolicy policy, int count) |
| | 加载历史消息 更多...
|
| |
| abstract int | loadFirstUnreadMessage (RCIMConversationType type, string targetId, string channelId) |
| | 获取第一条未读消息 更多...
|
| |
| abstract int | loadUnreadMentionedMessages (RCIMConversationType type, string targetId, string channelId) |
| | 获取会话中未读的 @ 消息 更多...
|
| |
| abstract int | insertMessage (RCIMMessage message) |
| | 插入一条消息 更多...
|
| |
| abstract int | insertMessages (List< RCIMMessage > messages) |
| | 插入多条消息,不支持超级群 更多...
|
| |
| abstract int | clearMessages (RCIMConversationType type, string targetId, string channelId, long timestamp, RCIMMessageOperationPolicy policy) |
| |
| abstract int | deleteLocalMessages (List< RCIMMessage > messages) |
| |
| abstract int | deleteMessages (RCIMConversationType type, string targetId, string channelId, List< RCIMMessage > messages) |
| |
| abstract int | recallMessage (RCIMMessage message) |
| |
| abstract int | sendPrivateReadReceiptMessage (string targetId, string channelId, long timestamp) |
| | 发送某个会话中的消息阅读回执 更多...
|
| |
| abstract int | sendGroupReadReceiptRequest (RCIMMessage message) |
| | 发起消息已读回执请求 更多...
|
| |
| abstract int | sendGroupReadReceiptResponse (string targetId, string channelId, List< RCIMMessage > messages) |
| | 发送已读回执 更多...
|
| |
| abstract int | updateMessageExpansion (string messageUId, Dictionary< string, string > expansion) |
| | 更新消息扩展信息。每条消息携带扩展信息键值对最大值 300个,单次设置扩展信息键值对最大值 20个 更多...
|
| |
| abstract int | removeMessageExpansionForKeys (string messageUId, List< string > keys) |
| | 删除消息扩展信息中特定的键值对 更多...
|
| |
| abstract int | changeMessageSentStatus (int messageId, RCIMSentStatus sentStatus) |
| | 设置消息发送状态 更多...
|
| |
| abstract int | changeMessageReceiveStatus (int messageId, RCIMReceivedStatus receivedStatus) |
| |
| abstract int | joinChatRoom (string targetId, int messageCount, bool autoCreate) |
| | 加入聊天室 更多...
|
| |
| abstract int | leaveChatRoom (string targetId) |
| | 退出聊天室 更多...
|
| |
| abstract int | loadChatRoomMessages (string targetId, long timestamp, RCIMTimeOrder order, int count) |
| | 获取聊天室历史消息记录。注:必须先开通聊天室消息云存储功能 更多...
|
| |
| abstract int | addChatRoomEntry (string targetId, string key, string value, bool deleteWhenLeft, bool overwrite) |
| | 设置聊天室自定义属性 更多...
|
| |
| abstract int | addChatRoomEntries (string targetId, Dictionary< string, string > entries, bool deleteWhenLeft, bool overwrite) |
| | 批量设置聊天室自定义属性 更多...
|
| |
| abstract int | loadChatRoomEntry (string targetId, string key) |
| | 获取聊天室单个属性 更多...
|
| |
| abstract int | loadAllChatRoomEntries (string targetId) |
| | 获取聊天室所有属性 更多...
|
| |
| abstract int | removeChatRoomEntry (string targetId, string key, bool force) |
| | 删除聊天室自定义属性 更多...
|
| |
| abstract int | removeChatRoomEntries (string targetId, List< string > keys, bool force) |
| | 批量删除聊天室自定义属性 更多...
|
| |
| abstract int | addToBlacklist (string userId) |
| | 将某个用户加入黑名单。当你把对方加入黑名单后,对方再发消息时,就会提示“已被加入黑名单,消息发送失败”。 但你依然可以发消息个对方 更多...
|
| |
| abstract int | removeFromBlacklist (string userId) |
| | 将某个用户从黑名单中移出 更多...
|
| |
| abstract int | loadBlacklistStatus (string userId) |
| | 获取某用户是否在黑名单中 更多...
|
| |
| abstract int | loadBlacklist () |
| | 获取当前用户设置的黑名单列表 更多...
|
| |
| abstract int | searchMessages (RCIMConversationType type, string targetId, string channelId, string keyword, long startTime, int count) |
| | 根据关键字搜索指定会话中的消息 更多...
|
| |
| abstract int | searchMessagesByTimeRange (RCIMConversationType type, string targetId, string channelId, string keyword, long startTime, long endTime, int offset, int count) |
| | 根据关键字搜索指定会话中某个时间段的消息 更多...
|
| |
| abstract int | searchMessagesByUserId (string userId, RCIMConversationType type, string targetId, string channelId, long startTime, int count) |
| | 根据用户 id 搜索指定会话中的消息 更多...
|
| |
| abstract int | searchConversations (List< RCIMConversationType > conversationTypes, string channelId, List< RCIMMessageType > messageTypes, string keyword) |
| | 根据关键字搜索会话 更多...
|
| |
| abstract int | changeNotificationQuietHours (string startTime, int spanMins, RCIMPushNotificationQuietHoursLevel level) |
| | 屏蔽某个时间段的消息提醒 更多...
|
| |
| abstract int | removeNotificationQuietHours () |
| | 删除已设置的全局时间段消息提醒屏蔽 更多...
|
| |
| abstract int | loadNotificationQuietHours () |
| | 查询已设置的时间段消息提醒屏蔽 更多...
|
| |
| abstract int | changeConversationNotificationLevel (RCIMConversationType type, string targetId, string channelId, RCIMPushNotificationLevel level) |
| | 设置会话的消息提醒状态。注:超级群调用该接口,channelId 为空时,相当于设置了 channelId 为空的频道的免打扰,不会屏蔽整个超级群会话下所有频道的免打扰 更多...
|
| |
| abstract int | loadConversationNotificationLevel (RCIMConversationType type, string targetId, string channelId) |
| | 获取会话的消息提醒状态 更多...
|
| |
| abstract int | changeConversationTypeNotificationLevel (RCIMConversationType type, RCIMPushNotificationLevel level) |
| | 设置会话类型的消息提醒状态。注:如要移除消息提醒状态,设置level为RCIMIWPushNotificationLevelDefault 更多...
|
| |
| abstract int | loadConversationTypeNotificationLevel (RCIMConversationType type) |
| | 获取会话类型的消息提醒状态 更多...
|
| |
| abstract int | changeUltraGroupDefaultNotificationLevel (string targetId, RCIMPushNotificationLevel level) |
| | 设置超级群的默认消息状态。一般由管理员设置的接口,针对超级群的所有群成员生效,针对超级群下所有频道生效,优先级较低。如果群成员自己超级群的免打扰级别,那么以群成员自己设置的为准 更多...
|
| |
| abstract int | loadUltraGroupDefaultNotificationLevel (string targetId) |
| | 获取超级群的默认消息状态 更多...
|
| |
| abstract int | changeUltraGroupChannelDefaultNotificationLevel (string targetId, string channelId, RCIMPushNotificationLevel level) |
| | 设置超级群频道的默认消息状态 更多...
|
| |
| abstract int | loadUltraGroupChannelDefaultNotificationLevel (string targetId, string channelId) |
| | 获取超级群频道的默认消息状态 更多...
|
| |
| abstract int | changePushContentShowStatus (bool showContent) |
| | 设置是否显示远程推送内容详情,此功能需要从服务端开启用户设置功能 更多...
|
| |
| abstract int | changePushLanguage (string language) |
| | 设置推送语言 更多...
|
| |
| abstract int | changePushReceiveStatus (bool receive) |
| | 设置是否接收远程推送。前提:移动端未在线,Web 、MAC/PC 终端在线,移动端是否接收远程推送。此功能需要从服务端开启用户设置功能 更多...
|
| |
| abstract int | sendGroupMessageToDesignatedUsers (RCIMMessage message, List< string > userIds) |
| | 给指定的群成员发送消息 更多...
|
| |
| abstract int | loadMessageCount (RCIMConversationType type, string targetId, string channelId) |
| | 获取指定会话的消息总数 更多...
|
| |
| abstract int | loadTopConversations (List< RCIMConversationType > conversationTypes, string channelId) |
| | 根据会话类型,获取置顶会话列表 更多...
|
| |
| abstract int | syncUltraGroupReadStatus (string targetId, string channelId, long timestamp) |
| | 上报超级群的已读时间 更多...
|
| |
| abstract int | loadConversationsForAllChannel (RCIMConversationType type, string targetId) |
| | 获取特定会话下所有频道的会话列表,只支持超级群 更多...
|
| |
| abstract int | modifyUltraGroupMessage (string messageUId, RCIMMessage message) |
| | 修改消息 更多...
|
| |
| abstract int | recallUltraGroupMessage (RCIMMessage message, bool deleteRemote) |
| | 撤回超级群消息 更多...
|
| |
| abstract int | clearUltraGroupMessages (string targetId, string channelId, long timestamp, RCIMMessageOperationPolicy policy) |
| | 删除本地特定 channel 特点时间之前的消息 更多...
|
| |
| abstract int | sendUltraGroupTypingStatus (string targetId, string channelId, RCIMUltraGroupTypingStatus typingStatus) |
| | 发送超级群输入状态 更多...
|
| |
| abstract int | clearUltraGroupMessagesForAllChannel (string targetId, long timestamp) |
| | 删除本地所有 channel 特定时间之前的消息 更多...
|
| |
| abstract int | loadBatchRemoteUltraGroupMessages (List< RCIMMessage > messages) |
| | 从服务获取批量消息 更多...
|
| |
| abstract int | updateUltraGroupMessageExpansion (string messageUId, Dictionary< string, string > expansion) |
| | 更新超级群消息扩展信息 更多...
|
| |
| abstract int | removeUltraGroupMessageExpansion (string messageUId, List< string > keys) |
| | 删除超级群消息扩展信息中特定的键值对 更多...
|
| |
| abstract int | changeLogLevel (RCIMLogLevel level) |
| | 修改日志等级 更多...
|
| |
|
| OnMessageReceivedDelegate | onMessageReceived [get, set] |
| | 收到消息的监听 更多...
|
| |
| OnConnectionStatusChangedDelegate | onConnectionStatusChanged [get, set] |
| | 网络状态变化 更多...
|
| |
| OnConversationTopStatusSyncedDelegate | onConversationTopStatusSynced [get, set] |
| | 会话状态置顶多端同步监听 更多...
|
| |
| OnRemoteMessageRecalledDelegate | onRemoteMessageRecalled [get, set] |
| | 撤回消息监听器 更多...
|
| |
| OnPrivateReadReceiptReceivedDelegate | onPrivateReadReceiptReceived [get, set] |
| | 单聊中收到消息回执的回调 更多...
|
| |
| OnRemoteMessageExpansionUpdatedDelegate | onRemoteMessageExpansionUpdated [get, set] |
| | 消息扩展信息更改的回调 更多...
|
| |
| OnRemoteMessageExpansionForKeyRemovedDelegate | onRemoteMessageExpansionForKeyRemoved [get, set] |
| | 消息扩展信息删除的回调 更多...
|
| |
| OnChatRoomMemberChangedDelegate | onChatRoomMemberChanged [get, set] |
| | 聊天室用户进入、退出聊天室监听 更多...
|
| |
| OnTypingStatusChangedDelegate | onTypingStatusChanged [get, set] |
| | 会话输入状态发生变化。对于单聊而言,当对方正在输入时,监听会触发一次;当对方不处于输入状态时,该监听还会触发一次,但回调里输入用户列表为空 更多...
|
| |
| OnConversationReadStatusSyncMessageReceivedDelegate | onConversationReadStatusSyncMessageReceived [get, set] |
| | 同步消息未读状态监听接口。多端登录,收到其它端清除某一会话未读数通知的时候 更多...
|
| |
| OnChatRoomEntriesSyncedDelegate | onChatRoomEntriesSynced [get, set] |
| | 聊天室 KV 同步完成的回调 更多...
|
| |
| OnChatRoomEntriesChangedDelegate | onChatRoomEntriesChanged [get, set] |
| | 聊天室 KV 发生变化的回调 更多...
|
| |
| OnRemoteUltraGroupMessageExpansionUpdatedDelegate | onRemoteUltraGroupMessageExpansionUpdated [get, set] |
| | 超级群消息 kv 被更新 更多...
|
| |
| OnRemoteUltraGroupMessageModifiedDelegate | onRemoteUltraGroupMessageModified [get, set] |
| | 超级群消息被更改 更多...
|
| |
| OnRemoteUltraGroupMessageRecalledDelegate | onRemoteUltraGroupMessageRecalled [get, set] |
| | 超级群消息被撤回 更多...
|
| |
| OnUltraGroupReadTimeReceivedDelegate | onUltraGroupReadTimeReceived [get, set] |
| | 超级群已读的监听 更多...
|
| |
| OnUltraGroupTypingStatusChangedDelegate | onUltraGroupTypingStatusChanged [get, set] |
| | 用户输入状态变化的回调。当客户端收到用户输入状态的变化时,会回调此接口,通知发生变化的会话以及当前正在输入的RCUltraGroupTypingStatusInfo列表 更多...
|
| |
| OnMessageBlockedDelegate | onMessageBlocked [get, set] |
| | 发送含有敏感词消息被拦截的回调 更多...
|
| |
| OnChatRoomStatusChangedDelegate | onChatRoomStatusChanged [get, set] |
| | 聊天室状态发生变化的监听 更多...
|
| |
| OnGroupMessageReadReceiptRequestReceivedDelegate | onGroupMessageReadReceiptRequestReceived [get, set] |
| | 收到群聊已读回执请求的监听 更多...
|
| |
| OnGroupMessageReadReceiptResponseReceivedDelegate | onGroupMessageReadReceiptResponseReceived [get, set] |
| | 收到群聊已读回执响应的监听 更多...
|
| |
| OnConnectedDelegate | onConnected [get, set] |
| | connect 的接口监听,收到链接结果的回调 更多...
|
| |
| OnDatabaseOpenedDelegate | onDatabaseOpened [get, set] |
| | connect 的接口监听,数据库打开时发生的回调 更多...
|
| |
| OnConversationLoadedDelegate | onConversationLoaded [get, set] |
| | loadConversation 的接口监听 更多...
|
| |
| OnConversationsLoadedDelegate | onConversationsLoaded [get, set] |
| | loadConversations 的接口监听 更多...
|
| |
| OnConversationRemovedDelegate | onConversationRemoved [get, set] |
| | removeConversation 的接口监听 更多...
|
| |
| OnConversationsRemovedDelegate | onConversationsRemoved [get, set] |
| | removeConversations 的接口监听 更多...
|
| |
| OnTotalUnreadCountLoadedDelegate | onTotalUnreadCountLoaded [get, set] |
| | loadTotalUnreadCount 的接口监听 更多...
|
| |
| OnUnreadCountLoadedDelegate | onUnreadCountLoaded [get, set] |
| | loadUnreadCount 的接口监听 更多...
|
| |
| OnUnreadCountByConversationTypesLoadedDelegate | onUnreadCountByConversationTypesLoaded [get, set] |
| | loadUnreadCountByConversationTypes 的接口监听 更多...
|
| |
| OnUnreadMentionedCountLoadedDelegate | onUnreadMentionedCountLoaded [get, set] |
| | loadUnreadMentionedCount 的接口监听 更多...
|
| |
| OnUltraGroupAllUnreadCountLoadedDelegate | onUltraGroupAllUnreadCountLoaded [get, set] |
| | loadUltraGroupAllUnreadMentionedCount 的接口监听 更多...
|
| |
| OnUltraGroupAllUnreadMentionedCountLoadedDelegate | onUltraGroupAllUnreadMentionedCountLoaded [get, set] |
| | loadUltraGroupAllUnreadMentionedCount 的接口监听 更多...
|
| |
| OnUnreadCountClearedDelegate | onUnreadCountCleared [get, set] |
| | clearUnreadCount 的接口监听 更多...
|
| |
| OnDraftMessageSavedDelegate | onDraftMessageSaved [get, set] |
| | saveDraftMessage 的接口监听 更多...
|
| |
| OnDraftMessageClearedDelegate | onDraftMessageCleared [get, set] |
| | clearDraftMessage 的接口监听 更多...
|
| |
| OnDraftMessageLoadedDelegate | onDraftMessageLoaded [get, set] |
| | loadDraftMessage 的接口监听 更多...
|
| |
| OnBlockedConversationsLoadedDelegate | onBlockedConversationsLoaded [get, set] |
| | loadBlockedConversations 的接口监听 更多...
|
| |
| OnConversationTopStatusChangedDelegate | onConversationTopStatusChanged [get, set] |
| | changeConversationTopStatus 的接口监听 更多...
|
| |
| OnConversationTopStatusLoadedDelegate | onConversationTopStatusLoaded [get, set] |
| | loadConversationTopStatus 的接口监听 更多...
|
| |
| OnConversationReadStatusSyncedDelegate | onConversationReadStatusSynced [get, set] |
| | syncConversationReadStatus 的接口监听 更多...
|
| |
| OnMessageAttachedDelegate | onMessageAttached [get, set] |
| | sendMessage 的接口监听 更多...
|
| |
| OnMessageSentDelegate | onMessageSent [get, set] |
| | sendMessage 的接口监听 更多...
|
| |
| OnMediaMessageAttachedDelegate | onMediaMessageAttached [get, set] |
| | sendMediaMessage 的接口监听 更多...
|
| |
| OnMediaMessageSendingDelegate | onMediaMessageSending [get, set] |
| | sendMediaMessage 的接口监听 更多...
|
| |
| OnSendingMediaMessageCanceledDelegate | onSendingMediaMessageCanceled [get, set] |
| | cancelSendingMediaMessage 的接口监听 更多...
|
| |
| OnMediaMessageSentDelegate | onMediaMessageSent [get, set] |
| | sendMediaMessage 的接口监听 更多...
|
| |
| OnMediaMessageDownloadingDelegate | onMediaMessageDownloading [get, set] |
| | downloadMediaMessage 的接口监听 更多...
|
| |
| OnMediaMessageDownloadedDelegate | onMediaMessageDownloaded [get, set] |
| | downloadMediaMessage 的接口监听 更多...
|
| |
| OnDownloadingMediaMessageCanceledDelegate | onDownloadingMediaMessageCanceled [get, set] |
| | cancelDownloadingMediaMessage 的接口监听 更多...
|
| |
| OnMessagesLoadedDelegate | onMessagesLoaded [get, set] |
| | loadMessages 的接口监听 更多...
|
| |
| OnUnreadMentionedMessagesLoadedDelegate | onUnreadMentionedMessagesLoaded [get, set] |
| | loadUnreadMentionedMessages 的接口监听 更多...
|
| |
| OnFirstUnreadMessageLoadedDelegate | onFirstUnreadMessageLoaded [get, set] |
| | loadFirstUnreadMessage 的接口监听 更多...
|
| |
| OnMessageInsertedDelegate | onMessageInserted [get, set] |
| | insertMessage 的接口监听 更多...
|
| |
| OnMessagesInsertedDelegate | onMessagesInserted [get, set] |
| | insertMessages 的接口监听 更多...
|
| |
| OnMessageClearedDelegate | onMessageCleared [get, set] |
| | clearMessages 的接口监听 更多...
|
| |
| OnLocalMessagesDeletedDelegate | onLocalMessagesDeleted [get, set] |
| | deleteLocalMessages 的接口监听 更多...
|
| |
| OnMessagesDeletedDelegate | onMessagesDeleted [get, set] |
| | deleteMessages 的接口监听 更多...
|
| |
| OnMessageRecalledDelegate | onMessageRecalled [get, set] |
| | recallMessage 的接口监听 更多...
|
| |
| OnPrivateReadReceiptMessageSentDelegate | onPrivateReadReceiptMessageSent [get, set] |
| | sendPrivateReadReceiptMessage 的接口监听 更多...
|
| |
| OnMessageExpansionUpdatedDelegate | onMessageExpansionUpdated [get, set] |
| | updateMessageExpansion 的接口监听 更多...
|
| |
| OnMessageExpansionForKeysRemovedDelegate | onMessageExpansionForKeysRemoved [get, set] |
| | removeMessageExpansionForKeys 的接口监听 更多...
|
| |
| OnMessageReceiveStatusChangedDelegate | onMessageReceiveStatusChanged [get, set] |
| | changeMessageReceiveStatus 的接口监听 更多...
|
| |
| OnMessageSentStatusChangedDelegate | onMessageSentStatusChanged [get, set] |
| | changeMessageSentStatus 的接口监听 更多...
|
| |
| OnChatRoomJoinedDelegate | onChatRoomJoined [get, set] |
| | joinChatRoom 的接口监听 更多...
|
| |
| OnChatRoomJoiningDelegate | onChatRoomJoining [get, set] |
| | 正在加入聊天室的回调 更多...
|
| |
| OnChatRoomLeftDelegate | onChatRoomLeft [get, set] |
| | leaveChatRoom 的接口监听 更多...
|
| |
| OnChatRoomMessagesLoadedDelegate | onChatRoomMessagesLoaded [get, set] |
| | loadChatRoomMessages 的接口监听 更多...
|
| |
| OnChatRoomEntryAddedDelegate | onChatRoomEntryAdded [get, set] |
| | addChatRoomEntry 的接口监听 更多...
|
| |
| OnChatRoomEntriesAddedDelegate | onChatRoomEntriesAdded [get, set] |
| | addChatRoomEntries 的接口监听 更多...
|
| |
| OnChatRoomEntryLoadedDelegate | onChatRoomEntryLoaded [get, set] |
| | loadChatRoomEntry 的接口监听 更多...
|
| |
| OnAllChatRoomEntriesLoadedDelegate | onAllChatRoomEntriesLoaded [get, set] |
| | loadAllChatRoomEntries 的接口监听 更多...
|
| |
| OnChatRoomEntryRemovedDelegate | onChatRoomEntryRemoved [get, set] |
| | removeChatRoomEntry 的接口监听 更多...
|
| |
| OnChatRoomEntriesRemovedDelegate | onChatRoomEntriesRemoved [get, set] |
| | removeChatRoomEntries 的接口监听 更多...
|
| |
| OnBlacklistAddedDelegate | onBlacklistAdded [get, set] |
| | addToBlacklist 的接口监听 更多...
|
| |
| OnBlacklistRemovedDelegate | onBlacklistRemoved [get, set] |
| | removeFromBlacklist 的接口监听 更多...
|
| |
| OnBlacklistStatusLoadedDelegate | onBlacklistStatusLoaded [get, set] |
| | loadBlacklistStatus 的接口监听 更多...
|
| |
| OnBlacklistLoadedDelegate | onBlacklistLoaded [get, set] |
| | loadBlacklist 的接口监听 更多...
|
| |
| OnMessagesSearchedDelegate | onMessagesSearched [get, set] |
| | searchMessages 的接口监听 更多...
|
| |
| OnMessagesSearchedByTimeRangeDelegate | onMessagesSearchedByTimeRange [get, set] |
| | searchMessagesByTimeRange 的接口监听 更多...
|
| |
| OnMessagesSearchedByUserIdDelegate | onMessagesSearchedByUserId [get, set] |
| | searchMessagesByUserId 的接口监听 更多...
|
| |
| OnConversationsSearchedDelegate | onConversationsSearched [get, set] |
| | searchConversations 的接口监听 更多...
|
| |
| OnGroupReadReceiptRequestSentDelegate | onGroupReadReceiptRequestSent [get, set] |
| | sendGroupReadReceiptRequest 的接口监听 更多...
|
| |
| OnGroupReadReceiptResponseSentDelegate | onGroupReadReceiptResponseSent [get, set] |
| | sendGroupReadReceiptResponse 的接口监听 更多...
|
| |
| OnNotificationQuietHoursChangedDelegate | onNotificationQuietHoursChanged [get, set] |
| | changeNotificationQuietHours 的接口回调 更多...
|
| |
| OnNotificationQuietHoursRemovedDelegate | onNotificationQuietHoursRemoved [get, set] |
| | removeNotificationQuietHours 的接口回调 更多...
|
| |
| OnNotificationQuietHoursLoadedDelegate | onNotificationQuietHoursLoaded [get, set] |
| | loadNotificationQuietHours 的接口回调 更多...
|
| |
| OnConversationNotificationLevelChangedDelegate | onConversationNotificationLevelChanged [get, set] |
| | changeConversationNotificationLevel 的接口回调 更多...
|
| |
| OnConversationNotificationLevelLoadedDelegate | onConversationNotificationLevelLoaded [get, set] |
| | loadConversationNotificationLevel 的接口回调 更多...
|
| |
| OnConversationTypeNotificationLevelChangedDelegate | onConversationTypeNotificationLevelChanged [get, set] |
| | changeConversationTypeNotificationLevel 的接口回调 更多...
|
| |
| OnConversationTypeNotificationLevelLoadedDelegate | onConversationTypeNotificationLevelLoaded [get, set] |
| | loadConversationTypeNotificationLevel 的接口回调 更多...
|
| |
| OnUltraGroupDefaultNotificationLevelChangedDelegate | onUltraGroupDefaultNotificationLevelChanged [get, set] |
| | changeUltraGroupDefaultNotificationLevel 的接口回调 更多...
|
| |
| OnUltraGroupDefaultNotificationLevelLoadedDelegate | onUltraGroupDefaultNotificationLevelLoaded [get, set] |
| | loadUltraGroupDefaultNotificationLevel 的接口回调 更多...
|
| |
| OnUltraGroupChannelDefaultNotificationLevelChangedDelegate | onUltraGroupChannelDefaultNotificationLevelChanged [get, set] |
| | changeUltraGroupChannelDefaultNotificationLevel 的接口回调 更多...
|
| |
| OnUltraGroupChannelDefaultNotificationLevelLoadedDelegate | onUltraGroupChannelDefaultNotificationLevelLoaded [get, set] |
| | loadUltraGroupChannelDefaultNotificationLevel 的接口回调 更多...
|
| |
| OnPushContentShowStatusChangedDelegate | onPushContentShowStatusChanged [get, set] |
| | changePushContentShowStatus 的接口监听 更多...
|
| |
| OnPushLanguageChangedDelegate | onPushLanguageChanged [get, set] |
| | changePushLanguage 的接口监听 更多...
|
| |
| OnPushReceiveStatusChangedDelegate | onPushReceiveStatusChanged [get, set] |
| | changePushReceiveStatus 的接口监听 更多...
|
| |
| OnMessageCountLoadedDelegate | onMessageCountLoaded [get, set] |
| | loadMessageCount 的接口监听 更多...
|
| |
| OnTopConversationsLoadedDelegate | onTopConversationsLoaded [get, set] |
| |
| OnGroupMessageToDesignatedUsersAttachedDelegate | onGroupMessageToDesignatedUsersAttached [get, set] |
| | sendGroupMessageToDesignatedUsers 的接口回调。消息存入数据库的回调 更多...
|
| |
| OnGroupMessageToDesignatedUsersSentDelegate | onGroupMessageToDesignatedUsersSent [get, set] |
| | sendGroupMessageToDesignatedUsers 的接口回调。消息发送完成的回调 更多...
|
| |
| OnUltraGroupReadStatusSyncedDelegate | onUltraGroupReadStatusSynced [get, set] |
| | syncUltraGroupReadStatus 的接口监听 更多...
|
| |
| OnConversationsLoadedForAllChannelDelegate | onConversationsLoadedForAllChannel [get, set] |
| | loadConversationsForAllChannel 的接口监听 更多...
|
| |
| OnUltraGroupUnreadMentionedCountLoadedDelegate | onUltraGroupUnreadMentionedCountLoaded [get, set] |
| | loadUltraGroupUnreadMentionedCount 的接口监听 更多...
|
| |
| OnUltraGroupUnreadCountLoadedDelegate | onUltraGroupUnreadCountLoaded [get, set] |
| |
| OnUltraGroupMessageModifiedDelegate | onUltraGroupMessageModified [get, set] |
| | modifyUltraGroupMessage 的接口监听 更多...
|
| |
| OnUltraGroupMessageRecalledDelegate | onUltraGroupMessageRecalled [get, set] |
| | recallUltraGroupMessage 的接口监听 更多...
|
| |
| OnUltraGroupMessagesClearedDelegate | onUltraGroupMessagesCleared [get, set] |
| | clearUltraGroupMessages 的接口监听 更多...
|
| |
| OnUltraGroupMessagesClearedForAllChannelDelegate | onUltraGroupMessagesClearedForAllChannel [get, set] |
| | clearUltraGroupMessagesForAllChannel 的接口监听 更多...
|
| |
| OnUltraGroupTypingStatusSentDelegate | onUltraGroupTypingStatusSent [get, set] |
| | sendUltraGroupTypingStatus 的接口监听 更多...
|
| |
| OnBatchRemoteUltraGroupMessagesLoadedDelegate | onBatchRemoteUltraGroupMessagesLoaded [get, set] |
| | loadBatchRemoteUltraGroupMessages 的接口监听 更多...
|
| |
| OnUltraGroupMessageExpansionUpdatedDelegate | onUltraGroupMessageExpansionUpdated [get, set] |
| | updateUltraGroupMessageExpansion 的接口监听 更多...
|
| |
| OnUltraGroupMessageExpansionRemovedDelegate | onUltraGroupMessageExpansionRemoved [get, set] |
| | removeUltraGroupMessageExpansion 的接口监听 更多...
|
| |