diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-12 13:27:53 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-12 13:27:53 -0400 |
| commit | b6ca79b73fdae969773935068c175ace43ac778d (patch) | |
| tree | 09b28a93eeb661048c6363d7936aa51244ee375f /MediaBrowser.Server.Implementations/Roku/RokuSessionController.cs | |
| parent | 3817ff36b0a29a1a411193c53bb1238d230d9056 (diff) | |
control remote players with now playing bar
Diffstat (limited to 'MediaBrowser.Server.Implementations/Roku/RokuSessionController.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Roku/RokuSessionController.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Roku/RokuSessionController.cs b/MediaBrowser.Server.Implementations/Roku/RokuSessionController.cs index 5a4522bd30..307619cbe5 100644 --- a/MediaBrowser.Server.Implementations/Roku/RokuSessionController.cs +++ b/MediaBrowser.Server.Implementations/Roku/RokuSessionController.cs @@ -46,6 +46,16 @@ namespace MediaBrowser.Server.Implementations.Roku return Task.FromResult(true); } + public Task SendPlaybackStartNotification(SessionInfoDto sessionInfo, CancellationToken cancellationToken) + { + return Task.FromResult(true); + } + + public Task SendPlaybackStoppedNotification(SessionInfoDto sessionInfo, CancellationToken cancellationToken) + { + return Task.FromResult(true); + } + public Task SendMessageCommand(MessageCommand command, CancellationToken cancellationToken) { return SendCommand(new WebSocketMessage<MessageCommand> |
