7 implementations of SubscribeInteractionsAsync
Aspire.Dashboard (2)
ServiceClient\DashboardClient.cs (1)
891public IAsyncEnumerable<WatchInteractionsResponseUpdate> SubscribeInteractionsAsync(CancellationToken cancellationToken)
ServiceClient\SelectedDashboardClient.cs (1)
52public IAsyncEnumerable<WatchInteractionsResponseUpdate> SubscribeInteractionsAsync(CancellationToken cancellationToken) =>
Aspire.Dashboard.Components.Tests (1)
tests\Shared\TestDashboardClient.cs (1)
144public IAsyncEnumerable<WatchInteractionsResponseUpdate> SubscribeInteractionsAsync(CancellationToken cancellationToken)
Aspire.Dashboard.Tests (4)
Integration\Playwright\Infrastructure\MockDashboardClient.cs (1)
73public IAsyncEnumerable<WatchInteractionsResponseUpdate> SubscribeInteractionsAsync(CancellationToken cancellationToken)
ResourceOutgoingPeerResolverTests.cs (1)
703public IAsyncEnumerable<WatchInteractionsResponseUpdate> SubscribeInteractionsAsync(CancellationToken cancellationToken) => throw new NotImplementedException();
Terminal\DefaultTerminalConnectionResolverTests.cs (1)
158public IAsyncEnumerable<WatchInteractionsResponseUpdate> SubscribeInteractionsAsync(CancellationToken cancellationToken) => throw new NotImplementedException();
tests\Shared\TestDashboardClient.cs (1)
144public IAsyncEnumerable<WatchInteractionsResponseUpdate> SubscribeInteractionsAsync(CancellationToken cancellationToken)
5 references to SubscribeInteractionsAsync
Aspire.Dashboard (1)
Components\Interactions\InteractionsProvider.cs (1)
383var interactions = DashboardClient.SubscribeInteractionsAsync(_cts.Token);
Aspire.Dashboard.Tests (4)
Model\DashboardClientTests.cs (4)
188var subscription = client.SubscribeInteractionsAsync(CancellationToken.None); 215var subscription = client.SubscribeInteractionsAsync(CancellationToken.None); 240Assert.Throws<ObjectDisposedException>(() => client.SubscribeInteractionsAsync(CancellationToken.None)); 252_ = client.SubscribeInteractionsAsync(CancellationToken.None);