8 references to NonBlockingConcurrent
Aspire.Hosting (6)
Backchannel\AuxiliaryBackchannelService.cs (1)
153EventDispatchBehavior.NonBlockingConcurrent,
Backchannel\BackchannelService.cs (2)
69EventDispatchBehavior.NonBlockingConcurrent, 94EventDispatchBehavior.NonBlockingConcurrent,
Eventing\DistributedApplicationEventing.cs (2)
29if (dispatchBehavior == EventDispatchBehavior.BlockingConcurrent || dispatchBehavior == EventDispatchBehavior.NonBlockingConcurrent) 38if (dispatchBehavior == EventDispatchBehavior.NonBlockingConcurrent)
Orchestrator\ApplicationOrchestrator.cs (1)
740await _eventing.PublishAsync(initializeEvent, EventDispatchBehavior.NonBlockingConcurrent, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.DevTunnels (1)
DevTunnelResourceBuilderExtensions.cs (1)
221await eventing.PublishAsync<BeforeResourceStartedEvent>(new(portResource, e.Services), EventDispatchBehavior.NonBlockingConcurrent, ct).ConfigureAwait(false);
Aspire.Hosting.Tests (1)
Eventing\DistributedApplicationBuilderEventingTests.cs (1)
105await builder.Eventing.PublishAsync(new DummyEvent(), EventDispatchBehavior.NonBlockingConcurrent).DefaultTimeout();