6 references to GetBatchesAsync
Aspire.Dashboard (2)
Components\Pages\ConsoleLogs.razor.cs (1)
312await foreach (var batch in _logEntryChannel.GetBatchesAsync(minReadInterval: TimeSpan.FromMilliseconds(100), cancellationToken: _resourceSubscriptionToken))
ServiceClient\DashboardClient.cs (1)
591await foreach (var batch in channel.GetBatchesAsync(minReadInterval: TimeSpan.FromMilliseconds(100), cancellationToken: enumeratorCancellationToken).ConfigureAwait(false))
Aspire.Dashboard.Tests (4)
ChannelExtensionsTests.cs (4)
27await foreach (var batch in channel.GetBatchesAsync(cancellationToken: cts.Token)) 51await foreach (var batch in channel.GetBatchesAsync().WithCancellation(cts.Token)) 78await foreach (var batch in channel.GetBatchesAsync(minReadInterval).WithCancellation(cts.Token)) 122await foreach (var batch in channel.GetBatchesAsync(minReadInterval).WithCancellation(cts.Token))