1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/WebServer/WebApiHostService.cs
2022-07-23 15:23:32 -04:00

50 lines
1.5 KiB
C#

using Microsoft.Extensions.Hosting;
using MSFSPopoutPanelManager.Shared;
using System.Threading;
using System.Threading.Tasks;
namespace MSFSPopoutPanelManager.WebServer
{
internal class WebApiHostService : IHostedService
{
private readonly IHostApplicationLifetime _appLifetime;
private readonly ISimConnectService _simConnectService;
public WebApiHostService(IHostApplicationLifetime appLifetime, ISimConnectService simConnectService)
{
_appLifetime = appLifetime;
_simConnectService = simConnectService;
}
public Task StartAsync(CancellationToken cancellationToken)
{
_appLifetime.ApplicationStarted.Register(OnStarted);
_appLifetime.ApplicationStopping.Register(OnStopping);
_appLifetime.ApplicationStopped.Register(OnStopped);
return Task.CompletedTask;
}
public Task StopAsync(CancellationToken cancellationToken)
{
return Task.CompletedTask;
}
private void OnStarted()
{
FileLogger.WriteLog("API Host server started", StatusMessageType.Info);
_simConnectService.Start();
}
private void OnStopping()
{
FileLogger.WriteLog("API Host server stopping", StatusMessageType.Info);
_simConnectService.Stop();
}
private void OnStopped()
{
FileLogger.WriteLog("API Host server stopped", StatusMessageType.Info);
}
}
}