📄
FigNet
  • FigNet Core
  • Getting Started
  • Showcase
  • Downloads
  • Releases
  • FAQs
  • Server Hosting
  • Core Concepts
    • Configuration
    • Network Message
    • Handler & Payload Registry
    • Serialization
    • Logging
    • Modules
    • Commands
    • ServerSocketEvents
    • ClientSocketEvents
  • Providers
    • Introduction
    • ENet
    • LiteNetLib
    • TCP
    • Websocket
  • API
    • FN
    • BitBuffer
    • DeliveryMethod
    • Message
    • IHandler
    • IPeer
    • IClientSocket
    • IServerSocket
    • IClientSocketListner
    • IServerSocketListner
    • INetStatistics
    • ServerApplication
    • ClientApplication
  • Third Party Software
    • License
Powered by GitBook
On this page

Was this helpful?

  1. API

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);
}
PreviousMessageNextIPeer

Last updated 3 years ago

Was this helpful?