From e1f8c18b516f5bd31f64b8faaa53266a3daddd7a Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 9 May 2013 13:38:02 -0400 Subject: added ability to track web sockets per session --- MediaBrowser.Controller/Library/IUserManager.cs | 55 ------------------------- 1 file changed, 55 deletions(-) (limited to 'MediaBrowser.Controller/Library/IUserManager.cs') diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs index 0fad1d05d..a0cea6200 100644 --- a/MediaBrowser.Controller/Library/IUserManager.cs +++ b/MediaBrowser.Controller/Library/IUserManager.cs @@ -1,6 +1,5 @@ using MediaBrowser.Common.Events; using MediaBrowser.Controller.Entities; -using MediaBrowser.Model.Connectivity; using System; using System.Collections.Generic; using System.Threading; @@ -19,12 +18,6 @@ namespace MediaBrowser.Controller.Library /// The users. IEnumerable Users { get; } - /// - /// Gets the active connections. - /// - /// The active connections. - IEnumerable RecentConnections { get; } - /// /// Occurs when [playback start]. /// @@ -67,17 +60,6 @@ namespace MediaBrowser.Controller.Library /// user Task AuthenticateUser(User user, string password); - /// - /// Logs the user activity. - /// - /// The user. - /// Type of the client. - /// The device id. - /// Name of the device. - /// Task. - /// user - Task LogUserActivity(User user, string clientType, string deviceId, string deviceName); - /// /// Refreshes metadata for each user /// @@ -122,43 +104,6 @@ namespace MediaBrowser.Controller.Library /// Task DeleteUser(User user); - /// - /// Used to report that playback has started for an item - /// - /// The user. - /// The item. - /// Type of the client. - /// The device id. - /// Name of the device. - /// - void OnPlaybackStart(User user, BaseItem item, string clientType, string deviceId, string deviceName); - - /// - /// Used to report playback progress for an item - /// - /// The user. - /// The item. - /// The position ticks. - /// Type of the client. - /// The device id. - /// Name of the device. - /// Task. - /// - Task OnPlaybackProgress(User user, BaseItem item, long? positionTicks, string clientType, string deviceId, string deviceName); - - /// - /// Used to report that playback has ended for an item - /// - /// The user. - /// The item. - /// The position ticks. - /// Type of the client. - /// The device id. - /// Name of the device. - /// Task. - /// - Task OnPlaybackStopped(User user, BaseItem item, long? positionTicks, string clientType, string deviceId, string deviceName); - /// /// Resets the password. /// -- cgit v1.2.3