1 write to _eventing
Aspire.Hosting (1)
Orchestrator\ApplicationOrchestrator.cs (1)
45
_eventing
= eventing;
10 references to _eventing
Aspire.Hosting (10)
Orchestrator\ApplicationOrchestrator.cs (10)
55
_eventing
.Subscribe<AfterEndpointsAllocatedEvent>(ProcessResourcesWithoutLifetime);
56
_eventing
.Subscribe<ResourceEndpointsAllocatedEvent>(PublishInitialResourceUrls);
58
_eventing
.Subscribe<BeforeResourceStartedEvent>(WaitForInBeforeResourceStartedEvent);
98
await
_eventing
.PublishAsync(afterEndpointsAllocatedEvent, context.CancellationToken).ConfigureAwait(false);
108
await
_eventing
.PublishAsync(new ResourceEndpointsAllocatedEvent(resource, _serviceProvider), EventDispatchBehavior.NonBlockingConcurrent, context.CancellationToken).ConfigureAwait(false);
167
await
_eventing
.PublishAsync(beforeResourceStartedEvent, context.CancellationToken).ConfigureAwait(false);
319
await
_eventing
.PublishAsync(afterResourcesCreatedEvent, cancellationToken).ConfigureAwait(false);
408
var initializeEvent = new InitializeResourceEvent(resource,
_eventing
, _loggerService, _notificationService, _serviceProvider);
409
await
_eventing
.PublishAsync(initializeEvent, EventDispatchBehavior.NonBlockingConcurrent, cancellationToken).ConfigureAwait(false);
430
await
_eventing
.PublishAsync(connectionStringAvailableEvent, cancellationToken).ConfigureAwait(false);