15 lines
360 B
C#
15 lines
360 B
C#
using System.Net.WebSockets;
|
|
using Core.Models.Eft.Ws;
|
|
|
|
namespace Core.Servers.Ws;
|
|
|
|
public interface IWebSocketConnectionHandler
|
|
{
|
|
string GetHookUrl();
|
|
string GetSocketId();
|
|
Task OnConnection(WebSocket ws, HttpContext context);
|
|
bool IsWebSocketConnected(string sessionId);
|
|
|
|
void SendMessage(string sessionID, WsNotificationEvent output);
|
|
}
|