消息
收发消息是 RTM 服务的基础功能之一,任何使用 RTM 服务发送的消息将会在 100 ms 以内送达到任何一个在线订阅用户端上,你可以一次只给一个人发消息,也可以一次给多人广播消息,这取决于你的使用方式。
RTM 有 3 种频道类型,分别是 Message Channel、User Channel 和 Stream Channel。3 种频道类型的主要区别如下:
- Message Channel:实时频道,消息通过频道传递,可扩展性强。本地用户可以调用
publish
方法,将channelType
参数设为AgoraRtmChannelTypeMessage
,并将channelName
参数设为频道名称,即可在频道中发送消息。远端用户可以调用subscribeWithChannel
方法订阅频道并接收消息。 - User Channel:向指定用户发送点对点消息。本地用户可以调用
publish
方法,将channelType
参数设为AgoraRtmChannelTypeUser
,并将channelName
参数设为对方的userId
,即可向指定用户发送消息。指定用户可以通过didReceiveMessageEvent
事件通知来接收消息。 - Stream Channel:流传输频道,用户需要先加入频道,然后加入 Topic,消息通过 Topic 传递。本地用户可以调用
publishTopicMessage
方法在 Topic 中发送消息,远端用户可以调用subscribeTopic
方法订阅 Topic 并接收消息。
本文介绍如何在 Message Channel 和 User Channel 中收发消息。
publish
接口描述
你可以直接调用publish
方法向订阅该频道的所有在线用户发送消息。即使没有订阅频道,也能在频道中发送消息。
以下做法可有效提升消息收发的可靠性:
- 消息负载限制在 32 KB 以内,否则发送会失败。
- 向单个频道发送消息的速率上限为 60 QPS。如果发送速率超限,将会有部分消息被丢弃。在满足要求的情况下,速率越低越好。
成功调用该方法后,SDK 会触发 didReceiveMessageEvent
事件通知。订阅了该频道并且开启了事件监听的用户将会收到该事件通知,详见事件监听。
接口方法
你可以通过以下方式调用 publish
[1/2] 和 publish
[2/2] 方法:
// publish[1/2]
- (void) publish:(NSString* _Nonnull)channelName
message:(NSString* _Nonnull)message
option:(AgoraRtmPublishOptions* _Nullable)publishOption
completion:(AgoraRtmOperationBlock _Nullable)completionBlock
// publish[2/2]
- (void) publish:(NSString* _Nonnull)channelName
data:(NSData* _Nonnull)data
option:(AgoraRtmPublishOptions* _Nullable)publishOption
completion:(AgoraRtmOperationBlock _Nullable)completionBlock
参数 | 类型 | 是否必填 | 默认值 | 描述 |
---|---|---|---|---|
channelName | NSString | 必填 | - |
|
message | NSString | 必填 | - | 在 publish [1/2] 方法中发布 String 型消息负载。 |
data | NSData | 必填 | - | 在 publish [2/2] 方法中发布 Byte 型消息负载。 |
publishOption | AgoraRtmPublishOptions | 选填 | - | 消息选项。 |
completion | AgoraRtmOperationBlock | 选填 | - | 调用结果回调:
|
AgoraRtmPublishOptions
数据类型包含以下属性:
属性 | 类型 | 是否必填 | 默认值 | 描述 |
---|---|---|---|---|
channelType | AgoraRtmChannelType | 必填 | - | 频道类型。详见 AgoraRtmChannelType 。 |
customType | NSString | 必填 | - | 用户自定义字段。仅支持 String 型。 |
storeInHistory | BOOL | 选填 | false | 是否开启历史消息存储。开启后,消息在发送的同时会被存储到云端,便于用户在进入频道后可以查询到历史消息记录。 信息 历史消息功能目前处于 Public Beta 阶段。如需使用,需要前往控制台开通。 |
基本用法
示例 1:向指定 Message Channel 发送 String 消息
NSString* message = @"Hello Agora!";
NSString* channel = @"your_channel";
AgoraRtmPublishOptions* publish_option = [[AgoraRtmPublishOptions alloc] init];
publish_option.storeInHistory = YES;
[rtm publish:channel message:message option:publish_option completion:^(AgoraRtmCommonResponse * _Nullable response, AgoraRtmErrorInfo * _Nullable errorInfo) {
if (errorInfo == nil) {
NSLog(@"publish success!!");
} else {
NSLog(@"publish failed, errorCode %d, reason %@", errorInfo.errorCode, errorInfo.reason);
}
}];
示例 2:向指定 Message Channel 发送 Byte 消息
unsigned char byte_array[5] = {0,1,2,3,4};
NSData* raw_message = [[NSData alloc] initWithBytes:byte_array length:5];
NSString* channel = @"your_channel";
AgoraRtmPublishOptions* publish_option = [[AgoraRtmPublishOptions alloc] init];
publish_option.storeInHistory = YES;
[rtm publish:channel data:raw_message option:nil completion:^(AgoraRtmCommonResponse * _Nullable response, AgoraRtmErrorInfo * _Nullable errorInfo) {
if (errorInfo == nil) {
NSLog(@"publish success!!");
} else {
NSLog(@"publish failed, errorCode %d, reason %@", errorInfo.errorCode, errorInfo.reason);
}
}];
示例 3:向指定 User Channel 发送 String 消息
NSString* message = @"Hello Agora!";
NSString* user = @"Tony";
AgoraRtmPublishOptions* publish_option = [[AgoraRtmPublishOptions alloc] init];
publish_option.channelType = AgoraRtmChannelTypeUser;
publish_option.storeInHistory = YES;
[rtm publish:user message:message option:publish_option completion:^(AgoraRtmCommonResponse * _Nullable response, AgoraRtmErrorInfo * _Nullable errorInfo) {
if (errorInfo == nil) {
NSLog(@"publish success!!");
} else {
NSLog(@"publish failed, errorCode %d, reason %@", errorInfo.errorCode, errorInfo.reason);
}
}];
示例 4:向指定 User Channel 发送 Byte 消息
NSData* raw_message = [[NSData alloc] initWithBytes:byte_array length:5];
NSString* user = @"Tony";
AgoraRtmPublishOptions* publish_option = [[AgoraRtmPublishOptions alloc] init];
publish_option.channelType = AgoraRtmChannelTypeUser;
publish_option.storeInHistory = YES;
[rtm publish:user data:raw_message option:publish_option completion:^(AgoraRtmCommonResponse * _Nullable response, AgoraRtmErrorInfo * _Nullable errorInfo) {
if (errorInfo == nil) {
NSLog(@"publish success!!");
} else {
NSLog(@"publish failed, errorCode %d, reason %@", errorInfo.errorCode, errorInfo.reason);
}
}];
成功调用该方法后,SDK 会触发 didReceiveMessageEvent
事件通知。订阅了该频道并且开启了事件监听的用户将会收到该事件通知,详见事件监听。
getMessages
接口描述
如果你需要从指定频道中获取历史消息,在客户端调用getMessages
方法。
接口方法
你可以通过以下方式调用 getMessages
方法:
-(void) getMessages:(NSString* _Nonnull)channelName
channelType:(AgoraRtmChannelType)channelType
options:(AgoraRtmGetHistoryMessagesOptions* _Nullable)options
completion:(AgoraRtmGetHistoryMessagesBlock _Nullable)completionBlock NS_SWIFT_NAME(getMessages(channelName:channelType:options:completion:));
参数 | 类型 | 是否必填 | 默认值 | 描述 |
---|---|---|---|---|
channelName | NSString | 必填 | - | 频道名称。 |
channelType | AgoraRtmChannelType | 必填 | - | 频道类型。详见 AgoraRtmChannelType 。 |
options | AgoraRtmGetHistoryMessagesOptions | 必填 | - | 查询选项。 |
completion | AgoraRtmGetHistoryMessagesBlock | 选填 | - | 调用结果回调:
|
AgoraRtmGetHistoryMessagesOptions
数据类型包含以下属性:
属性 | 类型 | 是否必填 | 默认值 | 描述 |
---|---|---|---|---|
messageCount | int | 选填 | 100 | 单次查询的最大消息数。如果单次查询的时间范围内消息数大于该值,则需多次调用 getMessages 方法进行查询。 |
start | unsigned long long | 选填 | 0 | 历史消息开始的时间戳。 |
end | unsigned long long | 选填 | 0 | 历史消息结束的时间戳。 |
RTM SDK 提供 start
和 end
参数,你可以根据实际需求进行设置:
- 如果你只设置了
start
参数,则你会获得比start
时间戳更早的历史消息。 - 如果你只设置了
end
参数,则你会获得当前时间戳到end
时间戳(包含)之间的历史消息。 - 如果你同时设置了
start
和end
参数,则你会获得start
和end
时间戳(包含)之间的历史消息。
AgoraRtmGetHistoryMessagesResponse
数据类型包含以下属性:
属性 | 类型 | 描述 |
---|---|---|
newStart | unsigned long long | 下一条历史消息的发送时间戳。如果该参数为 0 ,则表示没有下一条历史消息。 |
messageList | NSArray <AgoraRtmHistoryMessage *> | 历史消息列表。 |
数据类型包含以下属性:
属性 | 类型 | 描述 |
---|---|---|
message | AgoraRtmMessage | 消息。 |
publisher | NSString | 消息发布者 ID。 |
customType | NSString | 用户自定义字段。仅支持 String 型。 |
timestamp | unsigned long long | 消息发送的时间戳。 |
基本用法
AgoraRtmGetHistoryMessagesOptions* options = [[AgoraRtmGetHistoryMessagesOptions alloc] init];
options.messageCount = 10;
[[rtm getHistory] getMessages:@"channel" channelType:AgoraRtmChannelTypeMessage options:options completion:^(AgoraRtmGetHistoryMessagesResponse * _Nullable response, AgoraRtmErrorInfo * _Nonnull errorInfo) {
if (errorInfo != nil) {
NSLog(@"get h
istory message failed failed, errorCode %d, reason %@", errorInfo.errorCode, errorInfo.reason);
} else {
// process history message
NSArray <AgoraRtmHistoryMessage *> * messageList = response.messageList;
}
}];
接收消息
RTM 提供消息、状态、事件变更等信息的事件通知。通过设置事件监听,你可以接收已订阅频道中的消息和事件。以接收 User Channel 中的消息为例,示例代码如下:
-
在初始化时添加事件监听:
Objective-C@interface RtmHandler : NSObject <AgoraRtmClientDelegate>
@end
@implementation RtmHandler
// triggered when received message from remote users
-(void) rtmKit:(AgoraRtmClientKit *)rtmKit didReceiveMessageEvent:(AgoraRtmMessageEvent *)event {
NSString* channel = event.channelName;
AgoraRtmChannelType channel_type = event.channelType;
if (channel_type == AgoraRtmChannelTypeUser) {
// process user message
}
}
@end
AgoraRtmClientConfig* rtm_cfg = [[AgoraRtmClientConfig alloc] initWithAppId:@"your_appid" userId:@"your_userid"];
RtmListener* handler = [[RtmListener alloc] init];
NSError* initError = nil;
AgoraRtmClientKit* rtm = [[AgoraRtmClientKit alloc] initWithConfig:rtm_cfg delegate:handler error:&initError]; -
在任意时间添加事件监听:
Objective-C@interface RtmHandler : NSObject <AgoraRtmClientDelegate>
@end
@implementation RtmHandler
// triggered when received message from remote users
-(void) rtmKit:(AgoraRtmClientKit *)rtmKit didReceiveMessageEvent:(AgoraRtmMessageEvent *)event {
NSString* channel = event.channelName;
AgoraRtmChannelType channel_type = event.channelType;
if (channel_type == AgoraRtmChannelTypeUser) {
// process user message
}
}
@end
RtmListener* handler = [[RtmListener alloc] init];
[rtm addDelegate:handler];
关于如何添加和设置事件监听,详见事件监听章节。