2 instantiations of LogInformationEntry
Aspire.Hosting (2)
Dcp\DcpResourceWatcher.cs (2)
140
_logInformationChannel.Writer.TryWrite(
new
(subscribers.Name, LogsAvailable: null, subscribers.AnySubscribers, ShouldStartStream: true));
363
_logInformationChannel.Writer.TryWrite(
new
(resource.Metadata.Name, LogsAvailable: true, HasSubscribers: null, ShouldStartStream: shouldStartStream));
3 references to LogInformationEntry
Aspire.Hosting (3)
Dcp\DcpResourceWatcher.cs (3)
57
private readonly Channel<
LogInformationEntry
> _logInformationChannel = Channel.CreateUnbounded<
LogInformationEntry
>(
152
await foreach (
var
entry in _logInformationChannel.Reader.ReadAllAsync(cancellationToken).ConfigureAwait(false))