Add some websocket manager boilerplate

This commit is contained in:
Claus Vium
2019-03-01 14:08:51 +01:00
parent 1ac282b12e
commit 6bdb5debd2
3 changed files with 98 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
using System.Threading.Tasks;
using MediaBrowser.Model.Net;
namespace Emby.Server.Implementations.WebSockets
{
public interface IWebSocketHandler
{
Task ProcessMessage(WebSocketMessage<object> message);
}
}