1 write to _target
System.Threading.Tasks.Dataflow (1)
Internal\SpscTargetCore.cs (1)
388
internal DebuggingInformation(SpscTargetCore<TInput> target) {
_target
= target; }
6 references to _target
System.Threading.Tasks.Dataflow (6)
Internal\SpscTargetCore.cs (6)
391
internal IEnumerable<TInput> InputQueue { get { return
_target
._messages.ToList(); } }
394
internal int CurrentDegreeOfParallelism { get { return
_target
._activeConsumer != null && !
_target
.Completion.IsCompleted ? 1 : 0; } }
396
internal ExecutionDataflowBlockOptions DataflowBlockOptions { get { return
_target
._dataflowBlockOptions; } }
398
internal bool IsDecliningPermanently { get { return
_target
._decliningPermanently; } }
400
internal bool IsCompleted { get { return
_target
.Completion.IsCompleted; } }