aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Health
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-05-12 22:32:12 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-05-12 22:32:12 -0400
commit829aa9e855897dd6de448a3950bfe35d6d027f19 (patch)
tree092e40d5b572cea34274110fdde212d8f6d60a08 /MediaBrowser.Controller/Health
parentae2b6ddf395358b3ed55cb70f6ad4a7e02bd32ce (diff)
update shared components
Diffstat (limited to 'MediaBrowser.Controller/Health')
-rw-r--r--MediaBrowser.Controller/Health/IHealthMonitor.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Health/IHealthMonitor.cs b/MediaBrowser.Controller/Health/IHealthMonitor.cs
new file mode 100644
index 0000000000..b8ad98fc14
--- /dev/null
+++ b/MediaBrowser.Controller/Health/IHealthMonitor.cs
@@ -0,0 +1,12 @@
+using System.Collections.Generic;
+using System.Threading;
+using System.Threading.Tasks;
+using MediaBrowser.Model.Notifications;
+
+namespace MediaBrowser.Controller.Health
+{
+ public interface IHealthMonitor
+ {
+ Task<List<Notification>> GetNotifications(CancellationToken cancellationToken);
+ }
+}