aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session/ISessionWebSocketListener.cs
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2020-11-28 09:50:16 +0100
committercvium <clausvium@gmail.com>2020-11-28 09:50:16 +0100
commit1a0d8aef80a066fdefec4d757d5dcba0dfe0a03c (patch)
tree5b1fafe68e6d8207fdbdb29541e43a40f55494cc /Emby.Server.Implementations/Session/ISessionWebSocketListener.cs
parent5cd5a7d4cebe134d8256d4a1b6eadff760fbb2a7 (diff)
Revert "Removed Lazy implementation."
Diffstat (limited to 'Emby.Server.Implementations/Session/ISessionWebSocketListener.cs')
-rw-r--r--Emby.Server.Implementations/Session/ISessionWebSocketListener.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/Emby.Server.Implementations/Session/ISessionWebSocketListener.cs b/Emby.Server.Implementations/Session/ISessionWebSocketListener.cs
deleted file mode 100644
index 9b0b28e6e..000000000
--- a/Emby.Server.Implementations/Session/ISessionWebSocketListener.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-namespace Emby.Server.Implementations.Session
-{
- using System.Threading.Tasks;
- using Jellyfin.Data.Events;
- using MediaBrowser.Controller.Net;
-
- /// <summary>
- /// Defines the <see cref="ISessionWebSocketListener" />.
- /// </summary>
- public interface ISessionWebSocketListener
- {
- /// <summary>
- /// Runs processes due to a WebSocket connection event.
- /// </summary>
- /// <param name="websocketConnection">The <see cref="IWebSocketConnection"/> instance.</param>
- void ProcessWebSocketConnected(IWebSocketConnection websocketConnection);
-
- /// <summary>
- /// Disposes the object.
- /// </summary>
- void Dispose();
-
- /// <summary>
- /// Processes a message.
- /// </summary>
- /// <param name="message">The <see cref="WebSocketMessageInfo"/>.</param>
- /// <returns>A <see cref="Task"/>.</returns>
- Task ProcessMessageAsync(WebSocketMessageInfo message);
- }
-}