diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-10 08:18:07 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-10 08:18:07 -0400 |
| commit | 44f33fdb555aa9be3d710f7e81b995730ae836be (patch) | |
| tree | 193e63642a0aa7ab7603ae6ed9425c8f5d13b80a /MediaBrowser.Controller/Session/ISessionManager.cs | |
| parent | 35a7986b3f2c40e66bb7da6a9ae91b38cc763422 (diff) | |
progress on remote control
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index 66facdf6d..8227170d4 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -3,7 +3,6 @@ using MediaBrowser.Controller.Library; using System; using System.Collections.Generic; using System.Threading.Tasks; -using MediaBrowser.Model.Session; namespace MediaBrowser.Controller.Session { @@ -28,16 +27,10 @@ namespace MediaBrowser.Controller.Session event EventHandler<PlaybackProgressEventArgs> PlaybackStopped; /// <summary> - /// Gets all connections. + /// Gets the sessions. /// </summary> - /// <value>All connections.</value> - IEnumerable<SessionInfo> AllConnections { get; } - - /// <summary> - /// Gets the active connections. - /// </summary> - /// <value>The active connections.</value> - IEnumerable<SessionInfo> RecentConnections { get; } + /// <value>The sessions.</value> + IEnumerable<SessionInfo> Sessions { get; } /// <summary> /// Logs the user activity. @@ -67,12 +60,13 @@ namespace MediaBrowser.Controller.Session /// <param name="user">The user.</param> /// <param name="item">The item.</param> /// <param name="positionTicks">The position ticks.</param> + /// <param name="isPaused">if set to <c>true</c> [is paused].</param> /// <param name="clientType">Type of the client.</param> /// <param name="deviceId">The device id.</param> /// <param name="deviceName">Name of the device.</param> /// <returns>Task.</returns> /// <exception cref="System.ArgumentNullException"></exception> - Task OnPlaybackProgress(User user, BaseItem item, long? positionTicks, string clientType, string deviceId, string deviceName); + Task OnPlaybackProgress(User user, BaseItem item, long? positionTicks, bool isPaused, string clientType, string deviceId, string deviceName); /// <summary> /// Used to report that playback has ended for an item |
