diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-11 12:41:50 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-11 12:41:50 -0400 |
| commit | a1b45e98904c287b82d2f7d24eb4f4e2a248e211 (patch) | |
| tree | ecb6baa9b12bc7cbbcf92d86ba2457de437cfef5 /MediaBrowser.Controller/Session/SessionInfo.cs | |
| parent | 369107bab8f7ede2a3350249ee0cf83ba57cf81b (diff) | |
fixed web socket check-ins
Diffstat (limited to 'MediaBrowser.Controller/Session/SessionInfo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/SessionInfo.cs | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs index 93ef4f694..c9ed47756 100644 --- a/MediaBrowser.Controller/Session/SessionInfo.cs +++ b/MediaBrowser.Controller/Session/SessionInfo.cs @@ -1,4 +1,6 @@ -using MediaBrowser.Common.Net; +using System.Collections.Generic; +using System.Linq; +using MediaBrowser.Common.Net; using MediaBrowser.Controller.Entities; using MediaBrowser.Model.Net; using System; @@ -10,6 +12,11 @@ namespace MediaBrowser.Controller.Session /// </summary> public class SessionInfo { + public SessionInfo() + { + WebSockets = new List<IWebSocketConnection>(); + } + /// <summary> /// Gets or sets the id. /// </summary> @@ -86,7 +93,7 @@ namespace MediaBrowser.Controller.Session /// Gets or sets the web socket. /// </summary> /// <value>The web socket.</value> - public IWebSocketConnection WebSocket { get; set; } + public List<IWebSocketConnection> WebSockets { get; set; } /// <summary> /// Gets a value indicating whether this instance is active. @@ -96,9 +103,9 @@ namespace MediaBrowser.Controller.Session { get { - if (WebSocket != null) + if (WebSockets.Count > 0) { - return WebSocket.State == WebSocketState.Open; + return WebSockets.Any(i => i.State == WebSocketState.Open); } return (DateTime.UtcNow - LastActivityDate).TotalMinutes <= 5; @@ -113,7 +120,7 @@ namespace MediaBrowser.Controller.Session { get { - return WebSocket != null && WebSocket.State == WebSocketState.Open; + return WebSockets.Any(i => i.State == WebSocketState.Open); } } } |
