diff options
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/ITunerHostManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ITunerHostManager.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ITunerHostManager.cs b/MediaBrowser.Controller/LiveTv/ITunerHostManager.cs index 8247066cc9..68e61f3cc4 100644 --- a/MediaBrowser.Controller/LiveTv/ITunerHostManager.cs +++ b/MediaBrowser.Controller/LiveTv/ITunerHostManager.cs @@ -38,6 +38,12 @@ public interface ITunerHostManager IAsyncEnumerable<TunerHostInfo> DiscoverTuners(bool newDevicesOnly); /// <summary> + /// Deletes a tuner host by id, cleans up associated caches, and triggers a guide refresh. + /// </summary> + /// <param name="id">The tuner host id to delete.</param> + void DeleteTunerHost(string? id); + + /// <summary> /// Scans for tuner devices that have changed URLs. /// </summary> /// <param name="cancellationToken">The <see cref="CancellationToken"/> to use.</param> |
