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
237 B

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

Powered by TurnKey Linux.