9 writes to FullMode
aspire (2)
Backchannel\ResourceSnapshotWatcher.cs (1)
46FullMode = BoundedChannelFullMode.DropWrite
Diagnostics\FileLoggerProvider.cs (1)
96FullMode = BoundedChannelFullMode.Wait,
Aspire.Dashboard (4)
Api\TelemetryApiService.cs (1)
528var signal = Channel.CreateBounded<bool>(new BoundedChannelOptions(1) { FullMode = BoundedChannelFullMode.DropOldest });
Otlp\Storage\SqliteTelemetryRepository.Runtime.cs (2)
224FullMode = BoundedChannelFullMode.DropOldest, 281FullMode = BoundedChannelFullMode.DropOldest,
Telemetry\DashboardTelemetrySender.cs (1)
35FullMode = BoundedChannelFullMode.DropOldest,
Aspire.TerminalHost (1)
DcpUpstreamAdapter.cs (1)
89FullMode = BoundedChannelFullMode.Wait,
Microsoft.AspNetCore.SignalR.Client.Core (1)
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 (1)
src\aspnetcore\src\SignalR\common\Shared\MessageBuffer.cs (1)
32private readonly Channel<long> _waitForAck = Channel.CreateBounded<long>(new BoundedChannelOptions(1) { FullMode = BoundedChannelFullMode.DropOldest });
2 references to FullMode
System.Threading.Channels (2)
System\Threading\Channels\Channel.cs (2)
64options.Capacity > 0 ? new BoundedChannel<T>(options.Capacity, options.FullMode, !options.AllowSynchronousContinuations, itemDropped) : 65new RendezvousChannel<T>(options.FullMode, !options.AllowSynchronousContinuations, itemDropped);