HyphenateChatSDK 3.9.9.1
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
14typedef 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
Definition: EMChatMessage.h:82
Definition: EMChatThreadEvent.h:30
NSString * from
Definition: EMChatThreadEvent.h:45
EMChatThread * chatThread
Definition: EMChatThreadEvent.h:53
EMThreadOperation type
Definition: EMChatThreadEvent.h:37
Definition: EMChatThread.h:22