6 references to Eventing
Aspire.Hosting (1)
ExternalServiceBuilderExtensions.cs (1)
144
await e.
Eventing
.PublishAsync(new BeforeResourceStartedEvent(e.Resource, e.Services), ct).ConfigureAwait(false);
Aspire.Hosting.GitHub.Models (1)
GitHubModelsExtensions.cs (1)
71
await evt.
Eventing
.PublishAsync(new ConnectionStringAvailableEvent(r, evt.Services), ct)
Aspire.Hosting.Tests (3)
Orchestrator\ApplicationOrchestratorTests.cs (1)
154
Assert.Equal(applicationEventing, initEvent.
Eventing
);
WithUrlsTests.cs (2)
468
await e.
Eventing
.PublishAsync(new ResourceEndpointsAllocatedEvent(custom, e.Services), EventDispatchBehavior.BlockingConcurrent, ct);
471
await e.
Eventing
.PublishAsync(new BeforeResourceStartedEvent(custom, e.Services), EventDispatchBehavior.BlockingSequential, ct);
CustomResources.AppHost (1)
TalkingClockResource.cs (1)
59
var eventing = @event.
Eventing
; // Get the eventing service for publishing events.