1 instantiation of BackchannelLogEntry
Aspire.Cli.Tests (1)
Commands\RunCommandTests.cs (1)
256
yield return new
BackchannelLogEntry
13 references to BackchannelLogEntry
aspire (8)
Backchannel\AppHostCliBackchannel.cs (5)
18
IAsyncEnumerable<
BackchannelLogEntry
> GetAppHostLogEntriesAsync(CancellationToken cancellationToken);
81
public async IAsyncEnumerable<
BackchannelLogEntry
> GetAppHostLogEntriesAsync([EnumeratorCancellation] CancellationToken cancellationToken)
85
IAsyncEnumerable<
BackchannelLogEntry
>? logEntries = null;
93
logEntries = await rpc.InvokeWithCancellationAsync<IAsyncEnumerable<
BackchannelLogEntry
>>(
109
await foreach (
var
entry in EnumerateWithReconnect(logEntries, cancellationToken))
Backchannel\BackchannelJsonSerializerContext.cs (2)
27
[JsonSerializable(typeof(IAsyncEnumerable<
BackchannelLogEntry
>))]
28
[JsonSerializable(typeof(MessageFormatterEnumerableTracker.EnumeratorResults<
BackchannelLogEntry
>))]
Commands\RunCommand.cs (1)
515
await foreach (
var
entry in logEntries.WithCancellation(cancellationToken))
Aspire.Cli.Tests (5)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
821
public async IAsyncEnumerable<
BackchannelLogEntry
> GetAppHostLogEntriesAsync([EnumeratorCancellation] CancellationToken cancellationToken)
Commands\RunCommandTests.cs (1)
248
private async IAsyncEnumerable<
BackchannelLogEntry
> ReturnLogEntriesUntilCancelledAsync([EnumeratorCancellation] CancellationToken cancellationToken)
TestServices\TestAppHostCliBackchannel.cs (3)
21
public Func<CancellationToken, IAsyncEnumerable<
BackchannelLogEntry
>>? GetAppHostLogEntriesAsyncCallback { get; set; }
226
public async IAsyncEnumerable<
BackchannelLogEntry
> GetAppHostLogEntriesAsync([EnumeratorCancellation]CancellationToken cancellationToken)
231
await foreach (
var
entry in GetAppHostLogEntriesAsyncCallback.Invoke(cancellationToken))