4 references to WaitAsync
aspire (1)
Commands\AppHostLauncher.cs (1)
265
await childProcess.WaitForExitAsync(cancellationToken).
WaitAsync
(TimeSpan.FromMilliseconds(500), cancellationToken).ConfigureAwait(false);
Aspire.Dashboard (1)
Components\Pages\ConsoleLogs.razor.cs (1)
222
await loadingTcs.Task.
WaitAsync
(TimeSpan.FromSeconds(5), _resourceSubscriptionToken);
Aspire.Hosting (1)
Health\ResourceHealthCheckService.cs (1)
371
await delayInterruptedTask.
WaitAsync
(delay, cancellationToken).ConfigureAwait(ConfigureAwaitOptions.SuppressThrowing);
Aspire.Hosting.PostgreSQL.Tests (1)
PostgresFunctionalTests.cs (1)
572
await app.StopAsync(cts.Token).
WaitAsync
(TimeSpan.FromMinutes(1), cts.Token);