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