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