6 references to GetBatchesAsync
Aspire.Dashboard (2)
Components\Pages\ConsoleLogs.razor.cs (1)
368await foreach (var batch in _logEntryChannel.GetBatchesAsync(minReadInterval: TimeSpan.FromMilliseconds(100), cancellationToken: _resourceSubscriptionToken))
ServiceClient\DashboardClient.cs (1)
871await foreach (var batch in channel.GetBatchesAsync(minReadInterval: TimeSpan.FromMilliseconds(100), cancellationToken: enumeratorCancellationToken).ConfigureAwait(false))
Aspire.Dashboard.Tests (4)
ChannelExtensionsTests.cs (4)
66await foreach (var batch in channel.GetBatchesAsync(cancellationToken: cts.Token)) 90await foreach (var batch in channel.GetBatchesAsync().WithCancellation(cts.Token)) 117await foreach (var batch in channel.GetBatchesAsync(minReadInterval).WithCancellation(cts.Token)) 161await foreach (var batch in channel.GetBatchesAsync(minReadInterval).WithCancellation(cts.Token))