3.3.4接口变化列表
''-''代表原来api,''+''代表修改后的api。 @Deprecated代表已过时的api,后面会带着替代的api
新增加接口EMChatManager
EMChatManager:
+ public void recallMessage(EMMessage message);
+ public void aysncRecallMessage(final EMMessage message,
+ final EMCallBack callback);
+ public EMCursorResult fetchHistoryMessages(String conversationId, EMConversationType type, int pageSize,
+ String startMsgId);
+ public void asyncFetchHistoryMessage(final String conversationId, final EMConversationType type, final int pageSize,
+ final String startMsgId, final EMValueCallBack> callBack);
+ public List getSelfIdsOnOtherPlatform();
新增加接口EMContactManager
EMContactManager:
+ public List getSelfIdsOnOtherPlatform();
+ public void aysncGetSelfIdsOnOtherPlatform(final EMValueCallBack> callback);
新增加接口EMMessage
EMMessage:
+ public String conversationId();
新增加接口EMMessageListener
EMMessageListener:
+ public void onMessageRecalled(List messages);
新增加接口EMFileMessageBody
EMFileMessageBody:
+ public void setFileLength(long length)
+ public void setDownloadStatus(EMDownloadStatus status)
新增加类EMHWPushReceiver
+ public class EMHWPushReceiver