10 references to WaitForCompletion
Aspire.Hosting (3)
ApplicationModel\ResourceNotificationService.cs (2)
300
using var activity = ProfilingTelemetry.StartResourceWaitForDependency(Configuration, resource, dependency, WaitType.
WaitForCompletion
, waitBehavior: null);
556
WaitType.
WaitForCompletion
=> WaitUntilCompletionAsync(resource, waitAnnotation.Resource, waitAnnotation.ExitCode, cancellationToken, OnDependencyReadyAsync),
ResourceBuilderExtensions.cs (1)
2672
return builder.WithAnnotation(new WaitAnnotation(dependency.Resource, WaitType.
WaitForCompletion
, exitCode));
Aspire.Hosting.Docker (1)
DockerComposeServiceResource.cs (1)
200
WaitType.
WaitForCompletion
=> "service_completed_successfully",
Aspire.Hosting.Dotnet (1)
DotnetProjectBuildCoordinator.cs (1)
123
annotation => annotation.WaitType is WaitType.
WaitForCompletion
&&
Aspire.Hosting.Dotnet.Tests (2)
DotnetProjectBuildCoordinatorTests.cs (2)
3044
Assert.Equal(WaitType.
WaitForCompletion
, wait.WaitType);
3060
Assert.Equal(WaitType.
WaitForCompletion
, wait.WaitType);
Aspire.Hosting.Python.Tests (1)
AddPythonAppTests.cs (1)
798
Assert.Equal(WaitType.
WaitForCompletion
, waitForCompletionAnnotation.WaitType);
Aspire.Hosting.Tests (2)
ResourceNotificationTests.cs (2)
467
resource.Annotations.Add(new WaitAnnotation(dependency1, WaitType.
WaitForCompletion
));
468
resource.Annotations.Add(new WaitAnnotation(dependency2, WaitType.
WaitForCompletion
));