You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
894 B
33 lines
894 B
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);
|
|
}
|
|
}
|