public async Task StartAsync(IHost host)
        {
            _logger.LogDebug("HostBootManager > StartAsync > started");
            await _bootManager.StartAsync(host);

            _logger.LogDebug("HostBootManager > StartAsync > ended");
        }
Esempio n. 2
0
        public async Task StartAsync(CancellationToken cancellationToken = new CancellationToken())
        {
            await _host.StartAsync(cancellationToken);

            await _bootManager.StartAsync();
        }