SFS2X Objective-C API  1.7.13
iOS / macOS / tvOS
SubscribeRoomGroupRequest.h
1 //
2 // SubscribeRoomGroupRequest.h
3 // SFS2X
4 //
5 // Original development by Infosfer Game Technologies Ltd. | http://www.infosfer.com.
6 //
7 // Maintained and developed by A51 Integrated.
8 // Copyright 2012 A51 Integrated | http://a51integrated.com. All rights reserved.
9 //
10 
11 #import "BaseRequest.h"
12 
13 
14 EXTERN NSString * const SubscribeRoomGroupRequest_KEY_GROUP_ID;
15 EXTERN NSString * const SubscribeRoomGroupRequest_KEY_ROOM_LIST;
16 
17 
18 /** Subscribe to the events of a Room Group
19 */
20 @interface SubscribeRoomGroupRequest : BaseRequest {
21 
22  NSString *_groupId;
23 }
24 
25 @property (strong) NSString *groupId;
26 
27 -(id)initWithGroupId:(NSString *)groupId;
28 /**
29  @param groupId the name of the group
30 
31 
32  @see [ISFSEvents onSubscribeRoomGroup:]
33  @see [ISFSEvents onSubscribeRoomGroupError:]
34  @see UnsubscribeRoomGroupRequest
35 
36  */
37 +(id)requestWithGroupId:(NSString *)groupId;
38 
39 @end
SubscribeRoomGroupRequest
Definition: SubscribeRoomGroupRequest.h:20