diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-02 21:22:50 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-02 21:22:50 -0400 |
| commit | eb72c2db513f5306eecccb94f0f1cd5296a7d7db (patch) | |
| tree | a344f75c10085a9a8f5ac57c4926dbab09161e45 /MediaBrowser.Controller/Session/ISessionManager.cs | |
| parent | 33a3e215d03d2e8dad3e653e7c75258dc7eb4989 (diff) | |
updated nuget
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index 6ee57eb46..b2d111e54 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -14,12 +14,6 @@ namespace MediaBrowser.Controller.Session public interface ISessionManager { /// <summary> - /// Adds the parts. - /// </summary> - /// <param name="remoteControllers">The remote controllers.</param> - void AddParts(IEnumerable<ISessionController> remoteControllers); - - /// <summary> /// Occurs when [playback start]. /// </summary> event EventHandler<PlaybackProgressEventArgs> PlaybackStart; @@ -119,5 +113,12 @@ namespace MediaBrowser.Controller.Session /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task.</returns> Task SendPlaystateCommand(Guid sessionId, PlaystateRequest command, CancellationToken cancellationToken); + + /// <summary> + /// Sends the restart required message. + /// </summary> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task.</returns> + Task SendRestartRequiredMessage(CancellationToken cancellationToken); } }
\ No newline at end of file |
