6 writes to FullMode
aspire (1)
Diagnostics\FileLoggerProvider.cs (1)
113FullMode = BoundedChannelFullMode.Wait,
Aspire.Dashboard (3)
Otlp\Storage\TelemetryRepository.Watchers.cs (2)
42FullMode = BoundedChannelFullMode.DropOldest 138FullMode = BoundedChannelFullMode.DropOldest
Telemetry\DashboardTelemetrySender.cs (1)
35FullMode = BoundedChannelFullMode.DropOldest,
Microsoft.AspNetCore.SignalR.Client.Core (1)
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\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);