aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/IApplicationInterface.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-20 21:04:14 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-09-20 21:04:14 -0400
commit2e511fba839e86d9393e5eeb10795f1b0aed7ce0 (patch)
treed82481b8352ae2f088cbe902cc7fc222b8b0a0ed /MediaBrowser.ServerApplication/IApplicationInterface.cs
parentb5615cb233923f8424a40af009101a901f30f591 (diff)
support run as service
Diffstat (limited to 'MediaBrowser.ServerApplication/IApplicationInterface.cs')
-rw-r--r--MediaBrowser.ServerApplication/IApplicationInterface.cs32
1 files changed, 0 insertions, 32 deletions
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
-{
- /// <summary>
- /// Interface IApplicationInterface
- /// </summary>
- public interface IApplicationInterface
- {
- /// <summary>
- /// Gets a value indicating whether this instance is background service.
- /// </summary>
- /// <value><c>true</c> if this instance is background service; otherwise, <c>false</c>.</value>
- bool IsBackgroundService { get; }
-
- /// <summary>
- /// Shutdowns the application.
- /// </summary>
- void ShutdownApplication();
-
- /// <summary>
- /// Restarts the application.
- /// </summary>
- void RestartApplication();
-
- /// <summary>
- /// Called when [unhandled exception].
- /// </summary>
- /// <param name="ex">The ex.</param>
- void OnUnhandledException(Exception ex);
- }
-}