summaryrefslogtreecommitdiff
path: root/Mage/Assets/ThirdParty/Photon/PhotonChat/Code/ChatEventCode.cs
blob: 07e803e731cf68e99e049a6960a3e2b04ebdf34d (plain)
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
// ----------------------------------------------------------------------------------------------------------------------
// <summary>The Photon Chat Api enables clients to connect to a chat server and communicate with other clients.</summary>
// <remarks>ChatClient is the main class of this api.</remarks>
// <copyright company="Exit Games GmbH">Photon Chat Api - Copyright (C) 2014 Exit Games GmbH</copyright>
// ----------------------------------------------------------------------------------------------------------------------

namespace Photon.Chat
{
    /// <summary>
    /// Wraps up internally used constants in Photon Chat events. You don't have to use them directly usually.
    /// </summary>
    public class ChatEventCode
    {
        /// <summary>(0) Event code for messages published in public channels.</summary>
        public const byte ChatMessages = 0;
        /// <summary>(1) Not Used. </summary>
        public const byte Users = 1;// List of users or List of changes for List of users
        /// <summary>(2) Event code for messages published in private channels</summary>
        public const byte PrivateMessage = 2;
        /// <summary>(3) Not Used. </summary>
        public const byte FriendsList = 3;
        /// <summary>(4) Event code for status updates. </summary>
        public const byte StatusUpdate = 4;
        /// <summary>(5) Event code for subscription acks. </summary>
        public const byte Subscribe = 5;
        /// <summary>(6) Event code for unsubscribe acks. </summary>
        public const byte Unsubscribe = 6;
        /// <summary>(7) Event code for properties update. </summary>
        public const byte PropertiesChanged = 7;

        /// <summary>(8) Event code for new user subscription to a channel where <see cref="ChatChannel.PublishSubscribers"/> is enabled. </summary>
        public const byte UserSubscribed = 8;
        /// <summary>(9) Event code for when user unsubscribes from a channel where <see cref="ChatChannel.PublishSubscribers"/> is enabled. </summary>
        public const byte UserUnsubscribed = 9;
        /// <summary>(10) Event code for when the server sends an error to the client. </summary>
        /// <remarks> This is currently only used by Chat WebHooks. </remarks>
        public const byte ErrorInfo = 10;
    }
}