diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-04-17 16:33:52 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-17 16:33:52 -0400 |
| commit | f0f3ca8c181b4144cbd21fb545d0629e92a9529b (patch) | |
| tree | ebf4e2680ef00483b38618d97e7df26ea3da2fcd /MediaBrowser.Controller/Library/IMediaSourceManager.cs | |
| parent | 315541a686858eeab84f73a4fcad1a11c1ee15c7 (diff) | |
| parent | 6a66aef608a0caa567f603edbd9a4e3466fda469 (diff) | |
Merge pull request #2584 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller/Library/IMediaSourceManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IMediaSourceManager.cs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/MediaBrowser.Controller/Library/IMediaSourceManager.cs b/MediaBrowser.Controller/Library/IMediaSourceManager.cs index 1ab0e4cb0..2f8f37789 100644 --- a/MediaBrowser.Controller/Library/IMediaSourceManager.cs +++ b/MediaBrowser.Controller/Library/IMediaSourceManager.cs @@ -68,10 +68,9 @@ namespace MediaBrowser.Controller.Library /// Opens the media source. /// </summary> /// <param name="request">The request.</param> - /// <param name="enableAutoClose">if set to <c>true</c> [enable automatic close].</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task<MediaSourceInfo>.</returns> - Task<LiveStreamResponse> OpenLiveStream(LiveStreamRequest request, bool enableAutoClose, CancellationToken cancellationToken); + Task<LiveStreamResponse> OpenLiveStream(LiveStreamRequest request, CancellationToken cancellationToken); /// <summary> /// Gets the live stream. @@ -82,14 +81,6 @@ namespace MediaBrowser.Controller.Library Task<MediaSourceInfo> GetLiveStream(string id, CancellationToken cancellationToken); Task<Tuple<MediaSourceInfo, IDirectStreamProvider>> GetLiveStreamWithDirectStreamProvider(string id, CancellationToken cancellationToken); - - /// <summary> - /// Pings the media source. - /// </summary> - /// <param name="id">The live stream identifier.</param> - /// <param name="cancellationToken">The cancellation token.</param> - /// <returns>Task.</returns> - Task PingLiveStream(string id, CancellationToken cancellationToken); /// <summary> /// Closes the media source. |
