2 writes to _outgoingChannels
Aspire.Hosting (2)
Dashboard\ResourcePublisher.cs (2)
52
ImmutableInterlocked.Update(ref
_outgoingChannels
, static (set, channel) => set.Add(channel), channel);
71
ImmutableInterlocked.Update(ref
_outgoingChannels
, static (set, channel) => set.Remove(channel), channel);
2 references to _outgoingChannels
Aspire.Hosting (2)
Dashboard\ResourcePublisher.cs (2)
26
internal int OutgoingSubscriberCount =>
_outgoingChannels
.Count;
101
channels =
_outgoingChannels
;