Y2S2-Syski/syski_api/uk.co.syski.websocket/Services/WebSockets/IWebSocketHandler.cs

16 lines
348 B
C#
Raw Permalink Normal View History

2020-06-09 20:02:14 +00:00
using System.Threading.Tasks;
namespace Syski.WebSocket.Services.WebSockets
{
public interface IWebSocketHandler
{
Task OnConnected(WebSocketConnection webSocketConnection);
Task OnDisconnected(WebSocketConnection webSocketConnection);
Task OnReceiveMessage(WebSocketConnection webSocketConnection);
}
}