Current state of the websocket server for the Hermes client
This commit is contained in:
10
Socket/Handlers/ISocketHandler.cs
Normal file
10
Socket/Handlers/ISocketHandler.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Net.WebSockets;
|
||||
|
||||
namespace HermesSocketServer.Socket.Handlers
|
||||
{
|
||||
public interface ISocketHandler
|
||||
{
|
||||
int OpCode { get; }
|
||||
Task Execute<T>(WebSocketUser sender, T message, HermesSocketManager sockets);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user