You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class HelloHostedService(ILogger<HelloHostedService> _logger)
: BackgroundService //background service implements IHostedService, which is automatically registered and launched on `host.RunAsync();`
, IDiAutoInitialize //allows this service to have an AutoInitialize() method called when it is created by DI, allowing for custom initialization logic.
{
public async ValueTask AutoInitialize(IServiceProvider services, CancellationToken ct)