2 instantiations of RpcResourceState
Aspire.Cli.Tests (2)
TestServices\TestAppHostCliBackchannel.cs (2)
87
yield return new
RpcResourceState
95
yield return new
RpcResourceState
14 references to RpcResourceState
aspire (10)
Backchannel\AppHostCliBackchannel.cs (4)
21
IAsyncEnumerable<
RpcResourceState
> GetResourceStatesAsync(CancellationToken cancellationToken);
140
public IAsyncEnumerable<
RpcResourceState
> GetResourceStatesAsync(CancellationToken cancellationToken)
142
return InvokeStreamingRpcAsync<
RpcResourceState
>(
143
(rpc, ct) => rpc.InvokeStreamingWithProfilingAsync<
RpcResourceState
>(
Backchannel\BackchannelJsonSerializerContext.cs (2)
27
[JsonSerializable(typeof(IAsyncEnumerable<
RpcResourceState
>))]
28
[JsonSerializable(typeof(MessageFormatterEnumerableTracker.EnumeratorResults<
RpcResourceState
>))]
Commands\RunCommand.cs (4)
530
await foreach (
var
resourceState in resourceStates.WithCancellation(cancellationToken))
1320
private readonly Dictionary<string,
RpcResourceState
> _resourceStates = new();
1322
public void ProcessResourceState(
RpcResourceState
resourceState, Action<string, string> endpointWriter)
1324
if (_resourceStates.TryGetValue(resourceState.Resource, out
var
existingResourceState))
Aspire.Cli.Tests (4)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
1110
public async IAsyncEnumerable<
RpcResourceState
> GetResourceStatesAsync([EnumeratorCancellation] CancellationToken cancellationToken)
TestServices\TestAppHostCliBackchannel.cs (3)
19
public Func<CancellationToken, IAsyncEnumerable<
RpcResourceState
>>? GetResourceStatesAsyncCallback { get; set; }
70
public async IAsyncEnumerable<
RpcResourceState
> GetResourceStatesAsync([EnumeratorCancellation]CancellationToken cancellationToken)
77
await foreach (
var
resourceState in resourceStates)