2024-06-24 18:28:40 -04:00
|
|
|
using CommonSocketLibrary.Abstract;
|
|
|
|
|
|
|
|
namespace CommonSocketLibrary.Common
|
|
|
|
{
|
2024-08-10 15:31:08 -04:00
|
|
|
public interface IWebSocketHandler : ICodedOperation
|
2024-06-24 18:28:40 -04:00
|
|
|
{
|
|
|
|
Task Execute<Data>(SocketClient<WebSocketMessage> sender, Data data);
|
|
|
|
}
|
|
|
|
}
|