diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-02 15:08:58 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-02 15:08:58 -0400 |
| commit | 33a3e215d03d2e8dad3e653e7c75258dc7eb4989 (patch) | |
| tree | f6becfc2487bfd7e6c8b6b29c6a615a727c6e887 /MediaBrowser.Controller/Session | |
| parent | 0abc9d34937f2b1d6cddc5dcc45766940650c8c3 (diff) | |
added user data save event
Diffstat (limited to 'MediaBrowser.Controller/Session')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionController.cs (renamed from MediaBrowser.Controller/Session/ISessionRemoteController.cs) | 2 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 4 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Session/SessionInfo.cs | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionRemoteController.cs b/MediaBrowser.Controller/Session/ISessionController.cs index 9ba5c983d..f37d63b72 100644 --- a/MediaBrowser.Controller/Session/ISessionRemoteController.cs +++ b/MediaBrowser.Controller/Session/ISessionController.cs @@ -4,7 +4,7 @@ using System.Threading.Tasks; namespace MediaBrowser.Controller.Session { - public interface ISessionRemoteController + public interface ISessionController { /// <summary> /// Supportses the specified session. diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index 138aa1fc3..6ee57eb46 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -17,7 +17,7 @@ namespace MediaBrowser.Controller.Session /// Adds the parts. /// </summary> /// <param name="remoteControllers">The remote controllers.</param> - void AddParts(IEnumerable<ISessionRemoteController> remoteControllers); + void AddParts(IEnumerable<ISessionController> remoteControllers); /// <summary> /// Occurs when [playback start]. @@ -50,7 +50,7 @@ namespace MediaBrowser.Controller.Session /// <param name="user">The user.</param> /// <returns>Task.</returns> /// <exception cref="System.ArgumentNullException">user</exception> - Task<SessionInfo> LogConnectionActivity(string clientType, string appVersion, string deviceId, string deviceName, User user); + Task<SessionInfo> LogSessionActivity(string clientType, string appVersion, string deviceId, string deviceName, User user); /// <summary> /// Used to report that playback has started for an item diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs index dc934b70a..d50f19c1f 100644 --- a/MediaBrowser.Controller/Session/SessionInfo.cs +++ b/MediaBrowser.Controller/Session/SessionInfo.cs @@ -1,9 +1,9 @@ -using System.Collections.Generic; -using System.Linq; -using MediaBrowser.Common.Net; +using MediaBrowser.Common.Net; using MediaBrowser.Controller.Entities; using MediaBrowser.Model.Net; using System; +using System.Collections.Generic; +using System.Linq; namespace MediaBrowser.Controller.Session { |
