HyphenateChatSDK  4.6.0
EMChatThreadEvent.h
1 //
2 // EMThreadEvent.h
3 // HyphenateChat
4 //
5 // Created by 朱继超 on 2022/3/3.
6 // Copyright © 2022 easemob.com. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @class EMChatMessage;
12 @class EMChatThread;
13 
14 typedef NS_ENUM(NSUInteger, EMThreadOperation) {
15  EMThreadOperationUnknown,
16  EMThreadOperationCreate,
17  EMThreadOperationUpdate,
18  EMThreadOperationDelete,
19  EMThreadOperationUpdate_msg
20 };
21 
29 @interface EMChatThreadEvent : NSObject
37 @property (readonly) EMThreadOperation type;
45 @property (readonly) NSString *from;
53 @property (readonly) EMChatThread *chatThread;
54 
55 @end
56 
NSString * from
Definition: EMChatThreadEvent.h:45
EMThreadOperation type
Definition: EMChatThreadEvent.h:37
Definition: EMChatMessage.h:113
Definition: EMChatThreadEvent.h:29
EMChatThread * chatThread
Definition: EMChatThreadEvent.h:53
Definition: EMChatThread.h:21