5 writes to AllowSynchronousContinuations
Aspire.Dashboard (2)
ResourceService\DashboardClient.cs (2)
438
new UnboundedChannelOptions {
AllowSynchronousContinuations
= false, SingleReader = true, SingleWriter = true });
487
new UnboundedChannelOptions {
AllowSynchronousContinuations
= false, SingleReader = true, SingleWriter = true });
Aspire.Hosting (2)
Dashboard\ResourcePublisher.cs (1)
50
new UnboundedChannelOptions {
AllowSynchronousContinuations
= false, SingleReader = true, SingleWriter = true });
Dcp\ResourceLogSource.cs (1)
30
AllowSynchronousContinuations
= false,
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http2\Http2FrameWriter.cs (1)
155
AllowSynchronousContinuations
= _scheduleInline,
4 references to AllowSynchronousContinuations
System.Threading.Channels (4)
System\Threading\Channels\Channel.cs (3)
27
return new SingleConsumerUnboundedChannel<T>(!options.
AllowSynchronousContinuations
);
30
return new UnboundedChannel<T>(!options.
AllowSynchronousContinuations
);
72
return new BoundedChannel<T>(options.Capacity, options.FullMode, !options.
AllowSynchronousContinuations
, itemDropped);
System\Threading\Channels\Channel.netcoreapp.cs (1)
33
return new UnboundedPrioritizedChannel<T>(!options.
AllowSynchronousContinuations
, options.Comparer);