diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-02-08 08:16:57 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-08 08:16:57 -0700 |
| commit | 5ad7e4b7490a5f8756e89fd3dac5077a9acc7cbe (patch) | |
| tree | 44528d68013ce00395dfe866f0edc0abab2953d7 /MediaBrowser.Controller/Library | |
| parent | e50170a417db57245a89238e51b535055b8b0d22 (diff) | |
| parent | 19a72e8bf2b1a68fddb992357577683027408e90 (diff) | |
Merge pull request #10976 from barronpm/ihostedservice
Replace IServerEntryPoint with IHostedService
Diffstat (limited to 'MediaBrowser.Controller/Library')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryMonitor.cs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryMonitor.cs b/MediaBrowser.Controller/Library/ILibraryMonitor.cs index de74aa5a1..6d2f5b873 100644 --- a/MediaBrowser.Controller/Library/ILibraryMonitor.cs +++ b/MediaBrowser.Controller/Library/ILibraryMonitor.cs @@ -1,10 +1,9 @@ -#pragma warning disable CS1591 - -using System; - namespace MediaBrowser.Controller.Library { - public interface ILibraryMonitor : IDisposable + /// <summary> + /// Service responsible for monitoring library filesystems for changes. + /// </summary> + public interface ILibraryMonitor { /// <summary> /// Starts this instance. |
