Microsoft.Extensions.Hosting.IHostedService
Defines methods for objects that are managed by the host.
namespace Microsoft.Extensions.Hosting
{
public interface IHostedService
{
Task StartAsync(CancellationToken cancellationToken);
Task StopAsync(CancellationToken cancellationToken);
}
}