Beispiel #1
0
        protected override void OnMessage(MessageEventArgs e)
        {
            string uuid = this.ID;

            var msg = e.Data;

            CloudServer.GetWebSocketsManager()._proccessMsg(uuid, this.Context.WebSocket, msg);
        }
Beispiel #2
0
        protected override void OnError(ErrorEventArgs e)
        {
            string uuid = this.ID;

            CloudServer.GetWebSocketsManager()._proccessError(uuid, this.Context.WebSocket, e);
        }
Beispiel #3
0
        protected override void OnOpen()
        {
            string uuid = this.ID;

            CloudServer.GetWebSocketsManager()._proccessOpen(uuid, this.Context.WebSocket);
        }