jellyfin/Jellyfin.Server/CoreAppHost.cs

45 lines
1.3 KiB
C#
Raw Normal View History

2019-01-01 16:27:11 +01:00
using System.Collections.Generic;
using System.Reflection;
using Emby.Server.Implementations;
2019-06-10 00:53:16 +02:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Drawing;
2019-01-01 16:27:11 +01:00
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Configuration;
2019-01-01 16:27:11 +01:00
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server
{
public class CoreAppHost : ApplicationHost
{
public CoreAppHost(
ServerApplicationPaths applicationPaths,
ILoggerFactory loggerFactory,
StartupOptions options,
IFileSystem fileSystem,
2019-06-10 00:53:16 +02:00
IImageEncoder imageEncoder,
INetworkManager networkManager,
IConfiguration configuration)
: base(
applicationPaths,
loggerFactory,
options,
fileSystem,
imageEncoder,
networkManager,
configuration)
2019-01-01 16:27:11 +01:00
{
}
public override bool CanSelfRestart => StartupOptions.RestartPath != null;
2019-01-01 16:27:11 +01:00
protected override void RestartInternal() => Program.Restart();
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
2019-02-06 14:04:32 +01:00
{
yield return typeof(CoreAppHost).Assembly;
}
2019-01-01 16:27:11 +01:00
protected override void ShutdownInternal() => Program.Shutdown();
}
}