jellyfin/Jellyfin.Server/CoreAppHost.cs

52 lines
2.0 KiB
C#
Raw Normal View History

2019-01-01 10:27:11 -05:00
using System.Collections.Generic;
using System.Reflection;
using Emby.Server.Implementations;
2019-06-09 18:53:16 -04:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Drawing;
2019-01-01 10:27:11 -05:00
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
namespace Jellyfin.Server
{
/// <summary>
/// Implementation of the abstract <see cref="ApplicationHost" /> class.
/// </summary>
2019-01-01 10:27:11 -05:00
public class CoreAppHost : ApplicationHost
{
/// <summary>
/// Initializes a new instance of the <see cref="CoreAppHost" /> class.
/// </summary>
/// <param name="applicationPaths">The <see cref="ServerApplicationPaths" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="loggerFactory">The <see cref="ILoggerFactory" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="options">The <see cref="StartupOptions" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="fileSystem">The <see cref="IFileSystem" /> to be used by the <see cref="CoreAppHost" />.</param>
/// <param name="networkManager">The <see cref="INetworkManager" /> to be used by the <see cref="CoreAppHost" />.</param>
public CoreAppHost(
ServerApplicationPaths applicationPaths,
ILoggerFactory loggerFactory,
StartupOptions options,
IFileSystem fileSystem,
INetworkManager networkManager)
: base(
applicationPaths,
loggerFactory,
options,
fileSystem,
networkManager)
2019-01-01 10:27:11 -05:00
{
}
/// <inheritdoc />
2019-01-01 10:27:11 -05:00
protected override void RestartInternal() => Program.Restart();
/// <inheritdoc />
2019-01-01 10:27:11 -05:00
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
2019-02-06 08:04:32 -05:00
{
yield return typeof(CoreAppHost).Assembly;
}
2019-01-01 10:27:11 -05:00
/// <inheritdoc />
2019-01-01 10:27:11 -05:00
protected override void ShutdownInternal() => Program.Shutdown();
}
}