OnNotificationReceived() приватный Метод

private OnNotificationReceived ( byte data, int dataLength ) : void
data byte
dataLength int
Результат void
Пример #1
0
        public void PollEvents()
        {
            NetEvent evnt;

            while (this.controller.TryReceiveEvent(out evnt))
            {
                NetPeer peer = evnt.Peer;

                // No events should fire if the user closed the peer
                if (peer.ClosedByUser == false)
                {
                    switch (evnt.EventType)
                    {
                    case NetEventType.PeerConnected:
                        peer.SetCore(this);
                        peer.OnPeerConnected();
                        this.PeerConnected?.Invoke(peer, peer.Token);
                        break;

                    case NetEventType.PeerClosed:
                        peer.OnPeerClosed(evnt.CloseReason, evnt.UserKickReason, evnt.SocketError);
                        this.PeerClosed?.Invoke(peer, evnt.CloseReason, evnt.UserKickReason, evnt.SocketError);
                        break;

                    case NetEventType.Payload:
                        peer.OnPayloadReceived(evnt.EncodedData, evnt.EncodedLength);
                        this.PeerPayload?.Invoke(peer, evnt.EncodedData, evnt.EncodedLength);
                        break;

                    case NetEventType.Notification:
                        peer.OnNotificationReceived(evnt.EncodedData, evnt.EncodedLength);
                        this.PeerNotification?.Invoke(peer, evnt.EncodedData, evnt.EncodedLength);
                        break;

                    default:
                        throw new NotImplementedException();
                    }
                }

                this.controller.RecycleEvent(evnt);
            }
        }