2015-06-05 07:27:01 -07:00
|
|
|
|
using MediaBrowser.Server.Startup.Common;
|
|
|
|
|
|
2014-11-09 11:24:57 -07:00
|
|
|
|
namespace MediaBrowser.Server.Mono.Native
|
2013-09-24 17:54:51 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class NativeApp
|
|
|
|
|
/// </summary>
|
2014-11-25 21:27:55 -07:00
|
|
|
|
internal class NativeApp : BaseMonoApp
|
2013-09-24 17:54:51 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Shutdowns this instance.
|
|
|
|
|
/// </summary>
|
2014-11-23 16:10:41 -07:00
|
|
|
|
public override void Shutdown()
|
2013-09-24 17:54:51 -07:00
|
|
|
|
{
|
2014-11-09 11:24:57 -07:00
|
|
|
|
MainClass.Shutdown();
|
2013-09-24 17:54:51 -07:00
|
|
|
|
}
|
2015-05-23 15:01:13 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether this instance [can self restart].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance can self restart; otherwise, <c>false</c>.</value>
|
|
|
|
|
public override bool CanSelfRestart
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Restarts this instance.
|
|
|
|
|
/// </summary>
|
2015-06-05 07:27:01 -07:00
|
|
|
|
public override void Restart(StartupOptions startupOptions)
|
2015-05-23 15:01:13 -07:00
|
|
|
|
{
|
2015-06-05 07:27:01 -07:00
|
|
|
|
MainClass.Restart(startupOptions);
|
2015-05-23 15:01:13 -07:00
|
|
|
|
}
|
2013-09-24 17:54:51 -07:00
|
|
|
|
}
|
|
|
|
|
}
|