hefeixia
2021-02-18 5b8c95c760840f09910730943b21391e47187315
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * This file is part of the Wildfire Chat package.
 * (c) Heavyrain2012 <heavyrain.lee@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
 
package chat.server.im;
 
public interface IMTopic {
    
    String SendMessageTopic = "MS";
    String MultiCastMessageTopic = "MMC";
    String RecallMessageTopic = "MR";
    String RecallMultiCastMessageTopic = "MRMC";
    String PullMessageTopic = "MP";
    String NotifyMessageTopic = "MN";
    String NotifyRecallMessageTopic = "RMN";
    String BroadcastMessageTopic = "MBC";
 
    String GetUserSettingTopic = "UG";
    String PutUserSettingTopic = "UP";
    String NotifyUserSettingTopic = "UN";
 
    String CreateGroupTopic = "GC";
    String AddGroupMemberTopic = "GAM";
    String KickoffGroupMemberTopic = "GKM";
    String QuitGroupTopic = "GQ";
    String DismissGroupTopic = "GD";
    String ModifyGroupInfoTopic = "GMI";
    String ModifyGroupAliasTopic = "GMA";
    String ModifyGroupMemberAliasTopic = "GMMA";
    String GetGroupInfoTopic = "GPGI";
    String GetGroupMemberTopic = "GPGM";
    String TransferGroupTopic = "GTG";
    String SetGroupManagerTopic = "GSM";
 
    String GetUserInfoTopic = "UPUI";
    String ModifyMyInfoTopic = "MMI";
 
    String GetQiniuUploadTokenTopic = "GQNUT";
 
    String AddFriendRequestTopic = "FAR";
    String HandleFriendRequestTopic = "FHR";
    String FriendRequestPullTopic = "FRP";
    String NotifyFriendRequestTopic = "FRN";
    String RriendRequestUnreadSyncTopic = "FRUS";
 
    String DeleteFriendTopic = "FDL";
    String FriendPullTopic = "FP";
    String NotifyFriendTopic = "FN";
    String BlackListUserTopic = "BLU";
    String SetFriendAliasTopic = "FALS";
 
 
    String UploadDeviceTokenTopic = "UDT";
 
    String UserSearchTopic = "US";
 
    String JoinChatroomTopic = "CRJ";
    String QuitChatroomTopic = "CRQ";
    String GetChatroomInfoTopic = "CRI";
    String GetChatroomMemberTopic = "CRMI";
 
    String RouteTopic = "ROUTE";
 
    String CreateChannelTopic = "CHC";
    String ModifyChannelInfoTopic = "CHMI";
    String TransferChannelInfoTopic = "CHT";
    String DestoryChannelInfoTopic = "CHD";
    String ChannelSearchTopic = "CHS";
    String ChannelListenTopic = "CHL";
    String ChannelPullTopic = "CHP";
 
    String GetTokenTopic = "GETTOKEN";
    String DestroyUserTopic = "DESTROYUSER";
 
    String LoadRemoteMessagesTopic = "LRM";
    String KickoffPCClientTopic = "KPCC";
}