💥 Rename Pusher to Ring
This commit is contained in:
17
DysonNetwork.Ring/Connection/IWebSocketPacketHandler.cs
Normal file
17
DysonNetwork.Ring/Connection/IWebSocketPacketHandler.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Net.WebSockets;
|
||||
using DysonNetwork.Shared.Proto;
|
||||
|
||||
namespace DysonNetwork.Ring.Connection;
|
||||
|
||||
public interface IWebSocketPacketHandler
|
||||
{
|
||||
string PacketType { get; }
|
||||
|
||||
Task HandleAsync(
|
||||
Account currentUser,
|
||||
string deviceId,
|
||||
WebSocketPacket packet,
|
||||
WebSocket socket,
|
||||
WebSocketService srv
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user