From 2e511fba839e86d9393e5eeb10795f1b0aed7ce0 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 20 Sep 2013 21:04:14 -0400 Subject: support run as service --- .../IApplicationInterface.cs | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 MediaBrowser.ServerApplication/IApplicationInterface.cs (limited to 'MediaBrowser.ServerApplication/IApplicationInterface.cs') diff --git a/MediaBrowser.ServerApplication/IApplicationInterface.cs b/MediaBrowser.ServerApplication/IApplicationInterface.cs deleted file mode 100644 index e75324826..000000000 --- a/MediaBrowser.ServerApplication/IApplicationInterface.cs +++ /dev/null @@ -1,32 +0,0 @@ -using System; - -namespace MediaBrowser.ServerApplication -{ - /// - /// Interface IApplicationInterface - /// - public interface IApplicationInterface - { - /// - /// Gets a value indicating whether this instance is background service. - /// - /// true if this instance is background service; otherwise, false. - bool IsBackgroundService { get; } - - /// - /// Shutdowns the application. - /// - void ShutdownApplication(); - - /// - /// Restarts the application. - /// - void RestartApplication(); - - /// - /// Called when [unhandled exception]. - /// - /// The ex. - void OnUnhandledException(Exception ex); - } -} -- cgit v1.2.3