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