7 instantiations of WaitForResourceResponse
Aspire.Hosting (7)
Backchannel\AuxiliaryBackchannelRpcTarget.cs (7)
240return new WaitForResourceResponse 260_ => new WaitForResourceResponse { Success = false, ErrorMessage = $"Unknown status: {request.Status}" } 265return new WaitForResourceResponse { Success = false, TimedOut = true, ErrorMessage = $"Timed out waiting for resource '{request.ResourceName}'." }; 269return new WaitForResourceResponse { Success = false, ErrorMessage = ex.Message }; 277return new WaitForResourceResponse 295return new WaitForResourceResponse 311return new WaitForResourceResponse
4 references to WaitForResourceResponse
Aspire.Hosting (4)
Backchannel\AuxiliaryBackchannelRpcTarget.cs (4)
233public async Task<WaitForResourceResponse> WaitForResourceAsync(WaitForResourceRequest request, CancellationToken cancellationToken = default) 273private static async Task<WaitForResourceResponse> WaitForHealthyAsync(ResourceNotificationService notificationService, string resourceName, CancellationToken cancellationToken) 285private static async Task<WaitForResourceResponse> WaitForRunningAsync(ResourceNotificationService notificationService, string resourceName, CancellationToken cancellationToken) 304private static async Task<WaitForResourceResponse> WaitForTerminalAsync(ResourceNotificationService notificationService, string resourceName, CancellationToken cancellationToken)