5 types derived from Channel
System.Threading.Channels (5)
System\Threading\Channels\BoundedChannel.cs (1)
14internal sealed class BoundedChannel<T> : Channel<T>, IDebugEnumerable<T>
System\Threading\Channels\RendezvousChannel.cs (1)
14internal sealed class RendezvousChannel<T> : Channel<T>
System\Threading\Channels\SingleConsumerUnboundedChannel.cs (1)
18internal sealed class SingleConsumerUnboundedChannel<T> : Channel<T>, IDebugEnumerable<T>
System\Threading\Channels\UnboundedChannel.cs (1)
15internal sealed class UnboundedChannel<T> : Channel<T>, IDebugEnumerable<T>
System\Threading\Channels\UnboundedPriorityChannel.cs (1)
19internal sealed class UnboundedPrioritizedChannel<T> : Channel<T>, IDebugEnumerable<T>
327 references to Channel
aspire (9)
Backchannel\AuxiliaryBackchannelMonitor.cs (1)
68var connectionChanges = Channel.CreateUnbounded<bool>(new UnboundedChannelOptions
Backchannel\ResourceSnapshotWatcher.cs (2)
21private readonly Channel<bool>? _updateSignal; 214var updateSignal = _updateSignal ?? throw new InvalidOperationException("Resource update buffering was not enabled for this watcher.");
Commands\PsCommand.cs (1)
186var updates = Channel.CreateUnbounded<PsFollowUpdate>(new UnboundedChannelOptions
Diagnostics\FileLoggerProvider.cs (2)
24private readonly Channel<string>? _channel; 93private static Channel<string> CreateChannel() =>
Interaction\ExtensionInteractionService.cs (1)
37private readonly Channel<Func<Task>> _extensionTaskChannel;
Projects\ProjectLocator.cs (1)
194var channel = Channel.CreateUnbounded<AppHostProjectCandidate>(new UnboundedChannelOptions
src\Shared\ChannelExtensions.cs (1)
26this Channel<T> channel,
Aspire.Cli.Tests (5)
Backchannel\ResourceSnapshotWatcherTests.cs (1)
447var source = Channel.CreateUnbounded<ResourceSnapshot>();
Commands\AgentMcpCommandTests.cs (2)
357var notificationChannel = Channel.CreateUnbounded<JsonRpcNotification>(); 445var notificationChannel = Channel.CreateUnbounded<JsonRpcNotification>();
Commands\LogsCommandTests.cs (1)
1435var logLines = Channel.CreateUnbounded<string>();
TestServices\TestAuxiliaryBackchannelMonitor.cs (1)
15private readonly Channel<bool> _connectionChanges = Channel.CreateUnbounded<bool>();
Aspire.Components.Common.TestUtilities (1)
ActivityNotifier.cs (1)
16private readonly Channel<Activity> _activityChannel = Channel.CreateUnbounded<Activity>();
Aspire.Confluent.Kafka (1)
MetricsChannel.cs (1)
17private readonly Channel<string> _channel = Channel.CreateBounded<string>(new BoundedChannelOptions(10_000)
Aspire.Dashboard (32)
Api\TelemetryApiService.cs (1)
528var signal = Channel.CreateBounded<bool>(new BoundedChannelOptions(1) { FullMode = BoundedChannelFullMode.DropOldest });
Components\Pages\ConsoleLogs.razor.cs (1)
141private readonly Channel<LogEntryToWrite> _logEntryChannel = Channel.CreateUnbounded<LogEntryToWrite>(new UnboundedChannelOptions
Otlp\Storage\SqliteTelemetryRepository.Runtime.cs (6)
222var channel = Channel.CreateBounded<OtlpSpan>(new BoundedChannelOptions(1000) 279var channel = Channel.CreateBounded<OtlpLogEntry>(new BoundedChannelOptions(1000) 424private sealed class SpanWatcher(WatchSpansRequest request, Channel<OtlpSpan> channel) 427public Channel<OtlpSpan> Channel => channel; 430private sealed class LogWatcher(WatchLogsRequest request, Channel<OtlpLogEntry> channel) 433public Channel<OtlpLogEntry> Channel => channel;
ServiceClient\DashboardClient.cs (9)
61private readonly Channel<WatchInteractionsRequestUpdate> _incomingInteractionChannel = Channel.CreateUnbounded<WatchInteractionsRequestUpdate>(); 73private ImmutableHashSet<Channel<IReadOnlyList<ResourceViewModelChange>>> _outgoingResourceChannels = []; 74private ImmutableHashSet<Channel<WatchInteractionsResponseUpdate>> _outgoingInteractionChannels = []; 570ImmutableHashSet<Channel<IReadOnlyList<ResourceViewModelChange>>> resourceChannels = []; 681foreach (var channel in resourceChannels) 758foreach (var channel in _outgoingInteractionChannels) 855var channel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>( 900var channel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>( 952var channel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(
ServiceClient\SqliteResourceRepository.cs (13)
24private ImmutableHashSet<Channel<IReadOnlyList<ResourceViewModelChange>>> _resourceChannels = []; 25private readonly Dictionary<string, ImmutableHashSet<Channel<IReadOnlyList<ResourceLogLine>>>> _consoleChannels = new(StringComparers.ResourceName); 67var channel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(new UnboundedChannelOptions 113Channel<IReadOnlyList<ResourceLogLine>> channel; 315Channel<IReadOnlyList<ResourceLogLine>>[] channels; 381foreach (var channel in channels) 472Channel<IReadOnlyList<ResourceViewModelChange>> channel, 498Channel<IReadOnlyList<ResourceViewModelChange>>[] channels; 503foreach (var channel in channels) 525Channel<IReadOnlyList<ResourceViewModelChange>>[] resourceChannels; 526Channel<IReadOnlyList<ResourceLogLine>>[] consoleChannels; 533foreach (var channel in resourceChannels) 537foreach (var channel in consoleChannels)
src\Shared\ChannelExtensions.cs (1)
26this Channel<T> channel,
Telemetry\DashboardTelemetrySender.cs (1)
18private readonly Channel<(OperationContext, Func<HttpClient, Func<OperationContextProperty, object>, Task>)> _channel;
Aspire.Dashboard.Components.Tests (99)
Dialogs\ManageDataDialogTests.cs (2)
42var resourcesChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 253var resourcesChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>();
Interactions\InteractionsProviderTests.cs (20)
60var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 86var liveInteractionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 87var liveRequestsChannel = Channel.CreateUnbounded<WatchInteractionsRequestUpdate>(); 88var selectedInteractionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 89var selectedRequestsChannel = Channel.CreateUnbounded<WatchInteractionsRequestUpdate>(); 138var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 185var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 236var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 237var sendInteractionUpdatesChannel = Channel.CreateUnbounded<WatchInteractionsRequestUpdate>(); 295var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 296var sendInteractionUpdatesChannel = Channel.CreateUnbounded<WatchInteractionsRequestUpdate>(); 359var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 360var sendInteractionUpdatesChannel = Channel.CreateUnbounded<WatchInteractionsRequestUpdate>(); 432var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 433var sendInteractionUpdatesChannel = Channel.CreateUnbounded<WatchInteractionsRequestUpdate>(); 510var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 511var sendInteractionUpdatesChannel = Channel.CreateUnbounded<WatchInteractionsRequestUpdate>(); 568var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>(); 569var sendInteractionUpdatesChannel = Channel.CreateUnbounded<WatchInteractionsRequestUpdate>(); 630var interactionsChannel = Channel.CreateUnbounded<WatchInteractionsResponseUpdate>();
Pages\ConsoleLogsTerminalTests.cs (20)
43var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 44var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 95var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 96var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 145var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 146var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 196var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 197var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 242var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 243var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 302var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 303var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 350var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 351var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 392var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 393var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 454var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 455var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 533var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 534var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>();
Pages\ConsoleLogsTests.cs (38)
41var subscribedResourceNamesChannel = Channel.CreateUnbounded<string>(); 42var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 43var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 91var subscribedResourceNamesChannel = Channel.CreateUnbounded<string>(); 92var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 93var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 180var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 181var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 283var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 284var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 335var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 336var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 382var liveConsoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 383var repositoryConsoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 384var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 445var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 446var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 486var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 487var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 512var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 513var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 561var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 562var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 610var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 611var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 675var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 676var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 713var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 714var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 768var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 769var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 809var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 810var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 920var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 921var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 922var resourceCommandChannel = Channel.CreateUnbounded<ResourceCommandResponseViewModel>(); 979var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceLogLine>>(); 980var resourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>();
Pages\ResourcesTests.cs (2)
87var channel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 497var channel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>();
tests\Shared\TestDashboardClient.cs (16)
17private readonly Func<string, Channel<IReadOnlyList<ResourceLogLine>>>? _consoleLogsChannelProvider; 18private readonly Func<Channel<IReadOnlyList<ResourceViewModelChange>>>? _resourceChannelProvider; 19private readonly Func<Channel<WatchInteractionsResponseUpdate>>? _interactionChannelProvider; 20private readonly Channel<ResourceCommandResponseViewModel>? _resourceCommandsChannel; 22private readonly Channel<WatchInteractionsRequestUpdate>? _sendInteractionUpdateChannel; 40Func<string, Channel<IReadOnlyList<ResourceLogLine>>>? consoleLogsChannelProvider = null, 41Func<Channel<IReadOnlyList<ResourceViewModelChange>>>? resourceChannelProvider = null, 42Func<Channel<WatchInteractionsResponseUpdate>>? interactionChannelProvider = null, 43Channel<ResourceCommandResponseViewModel>? resourceCommandsChannel = null, 45Channel<WatchInteractionsRequestUpdate>? sendInteractionUpdateChannel = null, 95var channel = _consoleLogsChannelProvider(resourceName); 110var channel = _consoleLogsChannelProvider(resourceName); 131var channel = _resourceChannelProvider(); 135async static IAsyncEnumerable<IReadOnlyList<ResourceViewModelChange>> BuildSubscription(Channel<IReadOnlyList<ResourceViewModelChange>> channel, [EnumeratorCancellation] CancellationToken cancellationToken) 151var channel = _interactionChannelProvider(); 155async static IAsyncEnumerable<WatchInteractionsResponseUpdate> BuildSubscription(Channel<WatchInteractionsResponseUpdate> channel, [EnumeratorCancellation] CancellationToken cancellationToken)
tests\Shared\TestDashboardTelemetrySender.cs (1)
12public Channel<OperationContext> ContextChannel { get; } = Channel.CreateUnbounded<OperationContext>();
Aspire.Dashboard.Tests (30)
ChannelExtensionsTests.cs (6)
58var channel = Channel.CreateUnbounded<IReadOnlyList<string>>(); 82var channel = Channel.CreateUnbounded<IReadOnlyList<string>>(); 106var channel = Channel.CreateUnbounded<IReadOnlyList<string>>(); 107var resultChannel = Channel.CreateUnbounded<IReadOnlyList<IReadOnlyList<string>>>(); 150var channel = Channel.CreateUnbounded<IReadOnlyList<string>>(); 151var resultChannel = Channel.CreateUnbounded<IReadOnlyList<IReadOnlyList<string>>>();
Integration\DashboardClientAuthTests.cs (1)
171public Channel<ReceivedCallInfo<ApplicationInformationRequest>> ResourceInformationCallsChannel { get; } = Channel.CreateUnbounded<ReceivedCallInfo<ApplicationInformationRequest>>();
ResourceOutgoingPeerResolverTests.cs (5)
285var sourceChannel = Channel.CreateUnbounded<ResourceViewModelChange>(); 286var resultChannel = Channel.CreateUnbounded<(int ChangeCount, long Timestamp)>(); 364var sourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 383var sourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>(); 400var sourceChannel = Channel.CreateUnbounded<IReadOnlyList<ResourceViewModelChange>>();
TelemetryRepositoryTests\LogTests.cs (1)
966var resultChannel = Channel.CreateUnbounded<int>();
tests\Shared\TestDashboardClient.cs (16)
17private readonly Func<string, Channel<IReadOnlyList<ResourceLogLine>>>? _consoleLogsChannelProvider; 18private readonly Func<Channel<IReadOnlyList<ResourceViewModelChange>>>? _resourceChannelProvider; 19private readonly Func<Channel<WatchInteractionsResponseUpdate>>? _interactionChannelProvider; 20private readonly Channel<ResourceCommandResponseViewModel>? _resourceCommandsChannel; 22private readonly Channel<WatchInteractionsRequestUpdate>? _sendInteractionUpdateChannel; 40Func<string, Channel<IReadOnlyList<ResourceLogLine>>>? consoleLogsChannelProvider = null, 41Func<Channel<IReadOnlyList<ResourceViewModelChange>>>? resourceChannelProvider = null, 42Func<Channel<WatchInteractionsResponseUpdate>>? interactionChannelProvider = null, 43Channel<ResourceCommandResponseViewModel>? resourceCommandsChannel = null, 45Channel<WatchInteractionsRequestUpdate>? sendInteractionUpdateChannel = null, 95var channel = _consoleLogsChannelProvider(resourceName); 110var channel = _consoleLogsChannelProvider(resourceName); 131var channel = _resourceChannelProvider(); 135async static IAsyncEnumerable<IReadOnlyList<ResourceViewModelChange>> BuildSubscription(Channel<IReadOnlyList<ResourceViewModelChange>> channel, [EnumeratorCancellation] CancellationToken cancellationToken) 151var channel = _interactionChannelProvider(); 155async static IAsyncEnumerable<WatchInteractionsResponseUpdate> BuildSubscription(Channel<WatchInteractionsResponseUpdate> channel, [EnumeratorCancellation] CancellationToken cancellationToken)
tests\Shared\TestDashboardTelemetrySender.cs (1)
12public Channel<OperationContext> ContextChannel { get; } = Channel.CreateUnbounded<OperationContext>();
Aspire.Hosting (21)
ApplicationModel\ResourceLoggerService.cs (3)
228var channel = Channel.CreateUnbounded<LogSubscriber>(); 317var channel = Channel.CreateUnbounded<IReadOnlyList<LogLine>>(); 460var channel = Channel.CreateUnbounded<LogEntry>();
ApplicationModel\ResourceNotificationService.cs (1)
763var channel = Channel.CreateUnbounded<ResourceEvent>();
Backchannel\AuxiliaryBackchannelRpcTarget.cs (1)
1632var channel = Channel.CreateUnbounded<ResourceLogLine>(new UnboundedChannelOptions
Backchannel\BackchannelLoggerProvider.cs (6)
13private readonly Dictionary<int, Channel<BackchannelLogEntry>> _subscribers = []; 23internal (List<BackchannelLogEntry> Snapshot, int SubscriberId, Channel<BackchannelLogEntry> Channel) Subscribe() 25var channel = Channel.CreateUnbounded<BackchannelLogEntry>(); 39if (_subscribers.Remove(subscriberId, out var channel)) 59foreach (var subscriber in _subscribers.Values) 75foreach (var subscriber in _subscribers.Values)
Dashboard\ResourcePublisher.cs (4)
23private ImmutableHashSet<Channel<ResourceSnapshotChange>> _outgoingChannels = []; 49var channel = Channel.CreateUnbounded<ResourceSnapshotChange>( 86ImmutableHashSet<Channel<ResourceSnapshotChange>> channels; 104foreach (var channel in channels)
Dcp\DcpResourceWatcher.cs (1)
57private readonly Channel<LogInformationEntry> _logInformationChannel = Channel.CreateUnbounded<LogInformationEntry>(
Dcp\ResourceLogSource.cs (1)
48var channel = Channel.CreateUnbounded<ResourceLogEntry>(new UnboundedChannelOptions
Devcontainers\DevcontainerSettingsWriter.cs (1)
27private readonly Channel<PortForwardEntry> _portUpdates = Channel.CreateUnbounded<PortForwardEntry>(new UnboundedChannelOptions
InteractionService.cs (1)
648var channel = Channel.CreateUnbounded<Interaction>();
Pipelines\PipelineActivityReporter.cs (1)
523internal Channel<PublishingActivity> ActivityItemUpdated { get; } = Channel.CreateUnbounded<PublishingActivity>();
src\Shared\ChannelExtensions.cs (1)
26this Channel<T> channel,
Aspire.Hosting.Azure (1)
AzureProvisioningController.cs (1)
128private readonly Channel<QueuedOperation> _operationChannel = Channel.CreateUnbounded<QueuedOperation>(new UnboundedChannelOptions
Aspire.Hosting.Azure.Tests (1)
tests\Shared\TestInteractionService.cs (1)
23public Channel<InteractionData> Interactions { get; } = Channel.CreateUnbounded<InteractionData>();
Aspire.Hosting.Browsers.Tests (1)
tests\Shared\TestInteractionService.cs (1)
23public Channel<InteractionData> Interactions { get; } = Channel.CreateUnbounded<InteractionData>();
Aspire.Hosting.DevTunnels.Tests (1)
tests\Shared\TestInteractionService.cs (1)
23public Channel<InteractionData> Interactions { get; } = Channel.CreateUnbounded<InteractionData>();
Aspire.Hosting.Foundry (1)
FoundryExtensions.cs (1)
356var progressChannel = Channel.CreateUnbounded<float>();
Aspire.Hosting.RemoteHost.Tests (1)
tests\Shared\TestInteractionService.cs (1)
23public Channel<InteractionData> Interactions { get; } = Channel.CreateUnbounded<InteractionData>();
Aspire.Hosting.Tests (33)
Cli\CliOrphanDetectorTests.cs (2)
146var processRunningChannel = Channel.CreateUnbounded<int>(); 216var processRunningChannel = Channel.CreateUnbounded<int>();
Dashboard\DashboardEventHandlersTests.cs (2)
41var logChannel = Channel.CreateUnbounded<WriteContext>(); 94var logChannel = Channel.CreateUnbounded<WriteContext>();
Dashboard\DashboardServiceTests.cs (1)
40var getConsoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<LogEntry>>();
Dcp\DcpExecutorTests.cs (9)
139var channel = Channel.CreateUnbounded<string>(); 1491var logStreamPipesChannel = Channel.CreateUnbounded<(string Type, Pipe Pipe)>(); 2082var followStdErrPipeChannel = Channel.CreateUnbounded<Pipe>(); 3323private static async Task<LogStreamPipes> GetStreamPipesAsync(Channel<(string Type, Pipe Pipe)> logStreamPipesChannel) 3750var allocatedPortChannel = Channel.CreateUnbounded<int>(); 3751var connectionStringAvailableChannel = Channel.CreateUnbounded<IResource>(); 3826var connectionStringAvailableChannel = Channel.CreateUnbounded<IResource>(); 3903var resolvedUrlChannel = Channel.CreateUnbounded<string?>(); 3950var resolvedUrlChannel = Channel.CreateUnbounded<string?>();
Dcp\TestKubernetesService.cs (7)
28private readonly List<Channel<(WatchEventType, CustomResource)>> _watchChannels = []; 108foreach (var c in _watchChannels) 135foreach (var c in _watchChannels) 153foreach (var c in _watchChannels) 184foreach (var c in _watchChannels) 283var chan = Channel.CreateUnbounded<(WatchEventType, CustomResource)>(); 434foreach (var c in _watchChannels)
DistributedApplicationTests.cs (1)
1209var beforeResourceStartedEvents = Channel.CreateUnbounded<BeforeResourceStartedEvent>();
Health\ResourceHealthCheckServiceTests.cs (2)
148var channel = Channel.CreateUnbounded<ResourceReadyEvent>(); 293var channel = Channel.CreateUnbounded<DateTimeOffset>();
InteractionServiceTests.cs (3)
126var updates = Channel.CreateUnbounded<Interaction>(); 899var updates = Channel.CreateUnbounded<Interaction>(); 952var updates = Channel.CreateUnbounded<Interaction>();
ResourceCommandServiceTests.cs (2)
136var commandResourcesChannel = Channel.CreateUnbounded<string>(); 173var commandResourcesChannel = Channel.CreateUnbounded<string>();
ResourceLoggerServiceTests.cs (3)
263var consoleLogsChannel0 = Channel.CreateUnbounded<IReadOnlyList<LogEntry>>(); 267var consoleLogsChannel1 = Channel.CreateUnbounded<IReadOnlyList<LogEntry>>(); 482var consoleLogsChannel = Channel.CreateUnbounded<IReadOnlyList<LogEntry>>();
tests\Shared\TestInteractionService.cs (1)
23public Channel<InteractionData> Interactions { get; } = Channel.CreateUnbounded<InteractionData>();
Aspire.Hosting.TestUtilities (5)
Utils\Grpc\TestAsyncStreamReader.cs (1)
11private readonly Channel<T> _channel;
Utils\Grpc\TestServerStreamWriter.cs (1)
12private readonly Channel<T> _channel;
Utils\TestConsoleLogsService.cs (3)
12private readonly Func<string, Channel<IReadOnlyList<LogEntry>>>? _getConsoleLogsChannel; 14public TestConsoleLogsService(Func<string, Channel<IReadOnlyList<LogEntry>>>? getConsoleLogsChannel = null) 26var channel = _getConsoleLogsChannel(resourceName);
Aspire.TerminalHost (1)
DcpUpstreamAdapter.cs (1)
63private readonly Channel<ReadOnlyMemory<byte>> _outputChannel;
dotnet (1)
Commands\Test\MTP\TestApplicationActionQueue.cs (1)
13private readonly Channel<ParallelizableTestModuleGroupWithSequentialInnerModules> _channel;
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Commands\Test\MTP\TestApplicationActionQueue.cs (1)
13private readonly Channel<ParallelizableTestModuleGroupWithSequentialInnerModules> _channel;
dotnet-watch (1)
UI\SpectreBuildParametersSelectionPrompt.cs (1)
115private readonly Channel<ConsoleKeyInfo> _channel = Channel.CreateUnbounded<ConsoleKeyInfo>();
GenerateDocumentationAndConfigFiles (7)
src\roslyn\src\Dependencies\Threading\ProducerConsumer.cs (4)
253var channel = Channel.CreateUnbounded<TItem>(); 307/// cref="Channel{T}"/>, which will then then manage the rules and behaviors around the routines. Importantly, the 326var channel = Channel.CreateUnbounded<TItem>(new() 336static (obj, cancellationToken) => ((Channel<TItem>)obj!).Writer.TryComplete(new OperationCanceledException(cancellationToken)),
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\IAsyncEnumerableExtensions.cs (3)
44var channel = Channel.CreateBounded<T>(1024); 70public static void CompletesChannel<T>(this Task task, Channel<T> channel) 75static (task, channel) => ((Channel<T>)channel!).Writer.Complete(task.Exception),
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http2\Http2FrameWriter.cs (2)
23/// Since a connection has multiple streams, this class maintains a <see cref="Channel{T}"/> (i.e. bounded queue) 86private readonly Channel<Http2OutputProducer> _channel;
Internal\WebTransport\WebTransportSession.cs (1)
26private readonly Channel<WebTransportStream> _pendingStreams;
Microsoft.AspNetCore.Server.Kestrel.Transport.DirectTls (1)
Connection\DirectTlsConnectionListener.cs (1)
45private readonly Channel<DirectTlsConnection> _readyConnections;
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
Internal\NamedPipeConnectionListener.cs (1)
26private readonly Channel<ConnectionContext> _acceptedQueue;
Microsoft.AspNetCore.SignalR.Client.Core (5)
HubConnection.cs (1)
1919var invocationMessageChannel = Channel.CreateUnbounded<InvocationMessage>(_receiveLoopOptions);
HubConnectionExtensions.StreamAsChannelAsync.cs (2)
277var outputChannel = Channel.CreateUnbounded<TResult>(); 287private static async Task RunChannel<TResult>(ChannelReader<object?> inputChannel, Channel<TResult> outputChannel)
Internal\InvocationRequest.cs (1)
88private readonly Channel<object?> _channel = Channel.CreateUnbounded<object?>();
src\aspnetcore\src\SignalR\common\Shared\MessageBuffer.cs (1)
32private readonly Channel<long> _waitForAck = Channel.CreateBounded<long>(new BoundedChannelOptions(1) { FullMode = BoundedChannelFullMode.DropOldest });
Microsoft.AspNetCore.SignalR.Core (3)
Internal\ChannelBasedSemaphore.cs (1)
13private readonly Channel<int> _channel;
src\aspnetcore\src\SignalR\common\Shared\MessageBuffer.cs (1)
32private readonly Channel<long> _waitForAck = Channel.CreateBounded<long>(new BoundedChannelOptions(1) { FullMode = BoundedChannelFullMode.DropOldest });
StreamTracker.cs (1)
133private readonly Channel<T?> _channel;
Microsoft.Build.Tasks.Core (2)
AssemblyDependency\Node\RarNodeBuildEngine.cs (2)
46private readonly Channel<BuildEventArgs> _eventChannel; 47private readonly Channel<int> _eventCountChannel;
Microsoft.CodeAnalysis.Analyzers (6)
src\roslyn\src\Dependencies\Threading\ProducerConsumer.cs (3)
253var channel = Channel.CreateUnbounded<TItem>(); 307/// cref="Channel{T}"/>, which will then then manage the rules and behaviors around the routines. Importantly, the 326var channel = Channel.CreateUnbounded<TItem>(new()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\IAsyncEnumerableExtensions.cs (3)
44var channel = Channel.CreateBounded<T>(1024); 70public static void CompletesChannel<T>(this Task task, Channel<T> channel) 75static (task, channel) => ((Channel<T>)channel!).Writer.Complete(task.Exception),
Microsoft.CodeAnalysis.AnalyzerUtilities (6)
src\roslyn\src\Dependencies\Threading\ProducerConsumer.cs (3)
253var channel = Channel.CreateUnbounded<TItem>(); 307/// cref="Channel{T}"/>, which will then then manage the rules and behaviors around the routines. Importantly, the 326var channel = Channel.CreateUnbounded<TItem>(new()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\IAsyncEnumerableExtensions.cs (3)
44var channel = Channel.CreateBounded<T>(1024); 70public static void CompletesChannel<T>(this Task task, Channel<T> channel) 75static (task, channel) => ((Channel<T>)channel!).Writer.Complete(task.Exception),
Microsoft.CodeAnalysis.CodeStyle (6)
src\roslyn\src\Dependencies\Threading\ProducerConsumer.cs (3)
253var channel = Channel.CreateUnbounded<TItem>(); 307/// cref="Channel{T}"/>, which will then then manage the rules and behaviors around the routines. Importantly, the 326var channel = Channel.CreateUnbounded<TItem>(new()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\IAsyncEnumerableExtensions.cs (3)
44var channel = Channel.CreateBounded<T>(1024); 70public static void CompletesChannel<T>(this Task task, Channel<T> channel) 75static (task, channel) => ((Channel<T>)channel!).Writer.Complete(task.Exception),
Microsoft.CodeAnalysis.ResxSourceGenerator (6)
src\roslyn\src\Dependencies\Threading\ProducerConsumer.cs (3)
253var channel = Channel.CreateUnbounded<TItem>(); 307/// cref="Channel{T}"/>, which will then then manage the rules and behaviors around the routines. Importantly, the 326var channel = Channel.CreateUnbounded<TItem>(new()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\IAsyncEnumerableExtensions.cs (3)
44var channel = Channel.CreateBounded<T>(1024); 70public static void CompletesChannel<T>(this Task task, Channel<T> channel) 75static (task, channel) => ((Channel<T>)channel!).Writer.Complete(task.Exception),
Microsoft.CodeAnalysis.Workspaces (7)
src\roslyn\src\Dependencies\Threading\ProducerConsumer.cs (4)
253var channel = Channel.CreateUnbounded<TItem>(); 307/// cref="Channel{T}"/>, which will then then manage the rules and behaviors around the routines. Importantly, the 326var channel = Channel.CreateUnbounded<TItem>(new() 336static (obj, cancellationToken) => ((Channel<TItem>)obj!).Writer.TryComplete(new OperationCanceledException(cancellationToken)),
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\IAsyncEnumerableExtensions.cs (3)
44var channel = Channel.CreateBounded<T>(1024); 70public static void CompletesChannel<T>(this Task task, Channel<T> channel) 75static (task, channel) => ((Channel<T>)channel!).Writer.Complete(task.Exception),
Microsoft.DotNet.HotReload.Utils.Generator (1)
Util\FSWGen.cs (1)
14Channel<System.IO.FileSystemEventArgs>? _channel;
Microsoft.DotNet.HotReload.Watch (1)
Aspire\AspireServiceFactory.cs (1)
129var outputChannel = Channel.CreateUnbounded<OutputLine>(s_outputChannelOptions);
Microsoft.Extensions.AI (1)
ChatCompletion\AnonymousDelegatingChatClient.cs (1)
134var updates = Channel.CreateBounded<ChatResponseUpdate>(1);
Microsoft.Extensions.ServiceDiscovery.Tests (1)
ServiceEndpointResolverTests.cs (1)
266var channel = Channel.CreateUnbounded<ServiceEndpointResolverResult>();
Microsoft.ML.Data (3)
Transforms\RowShufflingTransformer.cs (3)
490private readonly Channel<int> _toProduceChannel; 491private readonly Channel<int> _toConsumeChannel; 555public static void PostAssert<T>(Channel<T> target, T item)
Microsoft.ML.Sweeper (1)
AsyncSweeper.cs (1)
171private readonly Channel<ParameterSetWithId> _paramChannel;
Roslyn.Diagnostics.Analyzers (6)
src\roslyn\src\Dependencies\Threading\ProducerConsumer.cs (3)
253var channel = Channel.CreateUnbounded<TItem>(); 307/// cref="Channel{T}"/>, which will then then manage the rules and behaviors around the routines. Importantly, the 326var channel = Channel.CreateUnbounded<TItem>(new()
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\IAsyncEnumerableExtensions.cs (3)
44var channel = Channel.CreateBounded<T>(1024); 70public static void CompletesChannel<T>(this Task task, Channel<T> channel) 75static (task, channel) => ((Channel<T>)channel!).Writer.Complete(task.Exception),
Stress.ApiService (2)
ProducerConsumer.cs (1)
20private readonly Channel<Data> _channel = Channel.CreateUnbounded<Data>();
Program.cs (1)
282var channel = Channel.CreateUnbounded<string>();
System.Diagnostics.Process (1)
System\Diagnostics\Process.Multiplexing.cs (1)
541Channel<ProcessOutputLine> channel = Channel.CreateBounded<ProcessOutputLine>(0);
System.IO.FileSystem.Watcher (1)
System\IO\FileSystemWatcher.Linux.cs (1)
1003private readonly Channel<WatcherEvent> _eventQueue;
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\Http2Connection.cs (1)
56private readonly Channel<WriteQueueEntry> _writeChannel;
System.Net.Quic (2)
System\Net\Quic\QuicConnection.cs (1)
150private readonly Channel<QuicStream> _acceptQueue = Channel.CreateUnbounded<QuicStream>(new UnboundedChannelOptions()
System\Net\Quic\QuicListener.cs (1)
101private readonly Channel<object> _acceptQueue;
System.Threading.Channels (7)
System\Threading\Channels\Channel.cs (5)
11public static Channel<T> CreateUnbounded<T>() => 19public static Channel<T> CreateUnbounded<T>(UnboundedChannelOptions options) 40public static Channel<T> CreateBounded<T>(int capacity) => 50public static Channel<T> CreateBounded<T>(BoundedChannelOptions options) => 59public static Channel<T> CreateBounded<T>(BoundedChannelOptions options, Action<T>? itemDropped)
System\Threading\Channels\Channel.netcoreapp.cs (2)
17public static Channel<T> CreateUnboundedPrioritized<T>() => 29public static Channel<T> CreateUnboundedPrioritized<T>(UnboundedPrioritizedChannelOptions<T> options)