From 33a3e215d03d2e8dad3e653e7c75258dc7eb4989 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 2 Oct 2013 15:08:58 -0400 Subject: added user data save event --- .../Session/ISessionRemoteController.cs | 61 ---------------------- 1 file changed, 61 deletions(-) delete mode 100644 MediaBrowser.Controller/Session/ISessionRemoteController.cs (limited to 'MediaBrowser.Controller/Session/ISessionRemoteController.cs') diff --git a/MediaBrowser.Controller/Session/ISessionRemoteController.cs b/MediaBrowser.Controller/Session/ISessionRemoteController.cs deleted file mode 100644 index 9ba5c983d..000000000 --- a/MediaBrowser.Controller/Session/ISessionRemoteController.cs +++ /dev/null @@ -1,61 +0,0 @@ -using MediaBrowser.Model.Session; -using System.Threading; -using System.Threading.Tasks; - -namespace MediaBrowser.Controller.Session -{ - public interface ISessionRemoteController - { - /// - /// Supportses the specified session. - /// - /// The session. - /// true if XXXX, false otherwise - bool Supports(SessionInfo session); - - /// - /// Sends the system command. - /// - /// The session. - /// The command. - /// The cancellation token. - /// Task. - Task SendSystemCommand(SessionInfo session, SystemCommand command, CancellationToken cancellationToken); - - /// - /// Sends the message command. - /// - /// The session. - /// The command. - /// The cancellation token. - /// Task. - Task SendMessageCommand(SessionInfo session, MessageCommand command, CancellationToken cancellationToken); - - /// - /// Sends the play command. - /// - /// The session. - /// The command. - /// The cancellation token. - /// Task. - Task SendPlayCommand(SessionInfo session, PlayRequest command, CancellationToken cancellationToken); - - /// - /// Sends the browse command. - /// - /// The session. - /// The command. - /// The cancellation token. - /// Task. - Task SendBrowseCommand(SessionInfo session, BrowseRequest command, CancellationToken cancellationToken); - - /// - /// Sends the playstate command. - /// - /// The session. - /// The command. - /// The cancellation token. - /// Task. - Task SendPlaystateCommand(SessionInfo session, PlaystateRequest command, CancellationToken cancellationToken); - } -} -- cgit v1.2.3