6 references to GetBatchesAsync
Aspire.Dashboard (2)
ServiceClient\DashboardClient.cs (2)
591await foreach (var batch in channel.GetBatchesAsync(minReadInterval: TimeSpan.FromMilliseconds(100), cancellationToken: enumeratorCancellationToken).ConfigureAwait(false)) 685await foreach (var batch in channel.GetBatchesAsync(TimeSpan.FromMilliseconds(100), combinedTokens.Token).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))