6 writes to AllowSynchronousContinuations
Aspire.Dashboard (3)
ServiceClient\DashboardClient.cs (3)
566
new UnboundedChannelOptions {
AllowSynchronousContinuations
= false, SingleReader = true, SingleWriter = true });
611
new UnboundedChannelOptions {
AllowSynchronousContinuations
= false, SingleReader = true, SingleWriter = true });
657
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,
5 references to AllowSynchronousContinuations
System.Threading.Channels (5)
System\Threading\Channels\Channel.cs (4)
25
return new SingleConsumerUnboundedChannel<T>(!options.
AllowSynchronousContinuations
);
28
return new UnboundedChannel<T>(!options.
AllowSynchronousContinuations
);
64
options.Capacity > 0 ? new BoundedChannel<T>(options.Capacity, options.FullMode, !options.
AllowSynchronousContinuations
, itemDropped) :
65
new RendezvousChannel<T>(options.FullMode, !options.
AllowSynchronousContinuations
, itemDropped);
System\Threading\Channels\Channel.netcoreapp.cs (1)
33
return new UnboundedPrioritizedChannel<T>(!options.
AllowSynchronousContinuations
, options.Comparer);