IHandler

Handlers are used to receive In coming data (messages) in object oriented way

public interface IHandler
{
    ushort MsgId { get; }
    void HandleMessage(Message message, uint PeerId);
}

Last updated

Was this helpful?