Class CommandRegistry<TService>
Inheritance
CommandRegistry<TService>
Assembly: cs.temp.dll.dll
Syntax
public abstract class CommandRegistry<TService> : Singleton<TService>, ICommandRegistry where TService : Singleton<TService>
Type Parameters
Name |
Description |
TService |
|
Methods
NotifyCommand(SocketEndpoint, String, BinaryReader, Int32)
Declaration
protected void NotifyCommand(SocketEndpoint socketEndpoint, string command, BinaryReader message, int remainingDataSize)
Parameters
NotifyConnected(SocketEndpoint)
Declaration
protected void NotifyConnected(SocketEndpoint socketEndpoint)
Parameters
NotifyDisconnected(SocketEndpoint)
Declaration
protected void NotifyDisconnected(SocketEndpoint socketEndpoint)
Parameters
RegisterCommandHandler(String, CommandHandler)
Declaration
public void RegisterCommandHandler(string command, CommandHandler handler)
Parameters
UnregisterCommandHandler(String, CommandHandler)
Declaration
public void UnregisterCommandHandler(string command, CommandHandler handler)
Parameters
Events
Connected
Declaration
public event ConnectedEventHandler Connected
Event Type
Disconnected
Declaration
public event DisconnectedEventHandler Disconnected
Event Type
Implements