You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Network/Contracts/IRouter.cs

12 lines
278 B

using System;
namespace ZeroLevel.Network
{
public interface IRouter
: IServer
{
void HandleMessage(Frame frame, ISocketClient client);
void HandleRequest(Frame frame, ISocketClient client, int identity, Action<int, byte[]> handler);
}
}

Powered by TurnKey Linux.