3 writes to _taskForOutputProcessing
System.Threading.Tasks.Dataflow (3)
Blocks\BroadcastBlock.cs (3)
831
_taskForOutputProcessing
= new Task(static thisSourceCore => ((BroadcastingSourceCore<TOutput>)thisSourceCore!).OfferMessagesLoopCore(), this,
850
_taskForOutputProcessing
= null;
897
_taskForOutputProcessing
= null;
6 references to _taskForOutputProcessing
System.Threading.Tasks.Dataflow (6)
Blocks\BroadcastBlock.cs (6)
823
bool currentlyProcessing =
_taskForOutputProcessing
!= null;
838
_owningSource,
_taskForOutputProcessing
, DataflowEtwProvider.TaskLaunchedReason.OfferingOutputMessages, _messages.Count);
842
Exception? exception = Common.StartTaskSafe(
_taskForOutputProcessing
, _dataflowBlockOptions.TaskScheduler);
920
bool currentlyProcessing =
_taskForOutputProcessing
!= null;
938
Debug.Assert(
_taskForOutputProcessing
== null, "There must be no processing tasks.");
1210
public Task? TaskForOutputProcessing { get { return _source.
_taskForOutputProcessing
; } }