1 write to _source
System.Threading.Tasks.Dataflow (1)
Blocks\BroadcastBlock.cs (1)
1213
public DebuggingInformation(BroadcastingSourceCore<TOutput> source) {
_source
= source; }
8 references to _source
System.Threading.Tasks.Dataflow (8)
Blocks\BroadcastBlock.cs (8)
1216
public bool HasValue { get { return
_source
._currentMessageIsValid; } }
1218
public TOutput Value { get { return
_source
._currentMessage!; } }
1220
public IEnumerable<TOutput> InputQueue { get { return
_source
._messages.ToList(); } }
1222
public Task? TaskForOutputProcessing { get { return
_source
._taskForOutputProcessing; } }
1225
public DataflowBlockOptions DataflowBlockOptions { get { return
_source
._dataflowBlockOptions; } }
1227
public bool IsCompleted { get { return
_source
.Completion.IsCompleted; } }
1230
public TargetRegistry<TOutput> LinkedTargets { get { return
_source
._targetRegistry; } }
1232
public ITargetBlock<TOutput>? NextMessageReservedFor { get { return
_source
._nextMessageReservedFor; } }