HyphenateChatSDK 3.9.9.1
EMThreadManagerDelegate.h
1//
2// EMThreadManagerDelegate.h
3// HyphenateSDK
4//
5// Created by 朱继超 on 2022/3/1.
6// Copyright © 2022 easemob.com. All rights reserved.
7//
8
9#ifndef EMThreadManagerDelegate_h
10#define EMThreadManagerDelegate_h
11#import "EMChatThread.h"
12#import "EMChatThreadEvent.h"
13NS_ASSUME_NONNULL_BEGIN
14@protocol EMThreadManagerDelegate <NSObject>
15
16@optional
25- (void)onChatThreadCreate:(EMChatThreadEvent *)event;
34- (void)onChatThreadUpdate:(EMChatThreadEvent *)event;
43- (void)onChatThreadDestroy:(EMChatThreadEvent *)event;
52- (void)onUserKickOutOfChatThread:(EMChatThreadEvent *)event;
53//MARK: - 自己离开子区可以在UI处理,多设备事件可以通过多设备代理中回调子区的代理处理(例如在线离开)
54//MARK: - Leaving the sub-area by yourself can be handled in the UI, and multi-device events can be handled by the agent of the callback sub-area in the multi-device proxy (for example, leaving online)
55@end
56
57NS_ASSUME_NONNULL_END
58
59#endif /* EMThreadManagerDelegate_h */
Definition: EMChatThreadEvent.h:30
Definition: EMThreadManagerDelegate.h:14