1 write to _target
System.Threading.Tasks.Dataflow (1)
Blocks\BatchBlock.cs (1)
1177
public DebuggingInformation(BatchBlockTargetCore target) {
_target
= target; }
6 references to _target
System.Threading.Tasks.Dataflow (6)
Blocks\BatchBlock.cs (6)
1180
public IEnumerable<T> InputQueue { get { return
_target
._messages.ToList(); } }
1182
public Task? TaskForInputProcessing { get { return
_target
._nonGreedyState?.TaskForInputProcessing; } }
1184
public QueuedMap<ISourceBlock<T>, DataflowMessageHeader>? PostponedMessages { get { return
_target
._nonGreedyState?.PostponedMessages; } }
1186
public bool IsDecliningPermanently { get { return
_target
._decliningPermanently; } }
1188
public GroupingDataflowBlockOptions DataflowBlockOptions { get { return
_target
._dataflowBlockOptions; } }
1190
public long NumberOfBatchesCompleted { get { return
_target
._batchesCompleted; } }