Interface IQueueHandler
Interface that allows you to enqueue packets to be handled
Namespace: SlipeServer.Server.PacketHandling
Assembly: SlipeServer.Server.dll
Syntax
public interface IQueueHandler
Properties
| Edit this page View SourceSupportedPacketIds
Declaration
IEnumerable<PacketId> SupportedPacketIds { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<PacketId> |
Methods
| Edit this page View SourceEnqueuePacket(IClient, PacketId, byte[])
Declaration
void EnqueuePacket(IClient client, PacketId packetId, byte[] data)
Parameters
| Type | Name | Description |
|---|---|---|
| IClient | client | |
| PacketId | packetId | |
| byte[] | data |