AgoraChatSDK 1.0.7
AgoraChatThreadManagerDelegate.h
1//
2// AgoraChatThreadManagerDelegate.h
3// HyphenateSDK
4//
5// Created by 朱继超 on 2022/3/1.
6// Copyright © 2022 easemob.com. All rights reserved.
7//
8
9#ifndef AgoraChatThreadManagerDelegate_h
10#define AgoraChatThreadManagerDelegate_h
11#import "AgoraChatThread.h"
12#import "AgoraChatThreadEvent.h"
13NS_ASSUME_NONNULL_BEGIN
15
16@optional
25- (void)onChatThreadCreate:(AgoraChatThreadEvent *)event;
34- (void)onChatThreadUpdate:(AgoraChatThreadEvent *)event;
43- (void)onChatThreadDestroy:(AgoraChatThreadEvent *)event;
52- (void)onUserKickOutOfChatThread:(AgoraChatThreadEvent *)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 /* AgoraChatThreadManagerDelegate_h */
Definition: AgoraChatThreadEvent.h:24
Definition: AgoraChatThreadManagerDelegate.h:14