Files
yinmeng-ios/xplan-ios/Main/IM/RoomMessage/XPIMChatRoomMessageDelegate.h
2021-10-21 21:35:01 +08:00

22 lines
438 B
Objective-C

//
// XPIMChatRoomMessageDelegate.h
// xplan-ios
//
// Created by 冯硕 on 2021/10/21.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class NIMMessage;
@protocol XPIMChatRoomMessageDelegate <NSObject>
///收到房间信息更细的消息
- (void)onReceiveRoomInfoUpdate:(NIMMessage *)message;
///收到队列消息变更的通知
- (void)onReceiveMicroQueueUpdate:(NIMMessage *)message;
@end
NS_ASSUME_NONNULL_END