aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Session/ISessionRemoteController.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-02 15:08:58 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-02 15:08:58 -0400
commit33a3e215d03d2e8dad3e653e7c75258dc7eb4989 (patch)
treef6becfc2487bfd7e6c8b6b29c6a615a727c6e887 /MediaBrowser.Controller/Session/ISessionRemoteController.cs
parent0abc9d34937f2b1d6cddc5dcc45766940650c8c3 (diff)
added user data save event
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionRemoteController.cs')
-rw-r--r--MediaBrowser.Controller/Session/ISessionRemoteController.cs61
1 files changed, 0 insertions, 61 deletions
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
- {
- /// <summary>
- /// Supportses the specified session.
- /// </summary>
- /// <param name="session">The session.</param>
- /// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
- bool Supports(SessionInfo session);
-
- /// <summary>
- /// Sends the system command.
- /// </summary>
- /// <param name="session">The session.</param>
- /// <param name="command">The command.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- Task SendSystemCommand(SessionInfo session, SystemCommand command, CancellationToken cancellationToken);
-
- /// <summary>
- /// Sends the message command.
- /// </summary>
- /// <param name="session">The session.</param>
- /// <param name="command">The command.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- Task SendMessageCommand(SessionInfo session, MessageCommand command, CancellationToken cancellationToken);
-
- /// <summary>
- /// Sends the play command.
- /// </summary>
- /// <param name="session">The session.</param>
- /// <param name="command">The command.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- Task SendPlayCommand(SessionInfo session, PlayRequest command, CancellationToken cancellationToken);
-
- /// <summary>
- /// Sends the browse command.
- /// </summary>
- /// <param name="session">The session.</param>
- /// <param name="command">The command.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- Task SendBrowseCommand(SessionInfo session, BrowseRequest command, CancellationToken cancellationToken);
-
- /// <summary>
- /// Sends the playstate command.
- /// </summary>
- /// <param name="session">The session.</param>
- /// <param name="command">The command.</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task.</returns>
- Task SendPlaystateCommand(SessionInfo session, PlaystateRequest command, CancellationToken cancellationToken);
- }
-}