aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Net/IWebSocket.cs
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2019-02-27 23:22:55 +0100
committerClaus Vium <clausvium@gmail.com>2019-02-27 23:22:55 +0100
commitfb1de5a9213f7da98ed15a6975201d6bca3537d4 (patch)
tree74ca93c5b068e148cfa67ad013d9db650b2ebb0d /Emby.Server.Implementations/Net/IWebSocket.cs
parent71ed8409446774c395b339728e2436c3b30536d8 (diff)
Remove more cruft and add the beginnings of a socket middleware
Diffstat (limited to 'Emby.Server.Implementations/Net/IWebSocket.cs')
-rw-r--r--Emby.Server.Implementations/Net/IWebSocket.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/Emby.Server.Implementations/Net/IWebSocket.cs b/Emby.Server.Implementations/Net/IWebSocket.cs
index 4671de07c..4d160aa66 100644
--- a/Emby.Server.Implementations/Net/IWebSocket.cs
+++ b/Emby.Server.Implementations/Net/IWebSocket.cs
@@ -45,9 +45,4 @@ namespace Emby.Server.Implementations.Net
/// <returns>Task.</returns>
Task SendAsync(string text, bool endOfMessage, CancellationToken cancellationToken);
}
-
- public interface IMemoryWebSocket
- {
- Action<Memory<byte>, int> OnReceiveMemoryBytes { get; set; }
- }
}