1 write to _spscTarget
System.Threading.Tasks.Dataflow (1)
Blocks\ActionBlock.cs (1)
96
_spscTarget
= new SpscTargetCore<TInput>(this, syncAction, dataflowBlockOptions);
13 references to _spscTarget
System.Threading.Tasks.Dataflow (13)
Blocks\ActionBlock.cs (13)
128
Debug.Assert((
_spscTarget
!= null) ^ (_defaultTarget != null), "One and only one of the two targets must be non-null after construction");
232
Debug.Assert(
_spscTarget
!= null);
233
_spscTarget
.Complete(exception: null);
251
Debug.Assert(
_spscTarget
!= null);
252
_spscTarget
.Complete(exception);
259
get { return _defaultTarget != null ? _defaultTarget.Completion :
_spscTarget
!.Completion; }
286
_spscTarget
!.Post(item);
294
_spscTarget
!.OfferMessage(messageHeader, messageValue, source, consumeToAccept);
300
get { return _defaultTarget != null ? _defaultTarget.InputCount :
_spscTarget
!.InputCount; }
306
get { return _defaultTarget != null ? _defaultTarget.GetDebuggingInformation().InputCount :
_spscTarget
!.InputCount; }
312
return Common.GetNameForDebugger(this, _defaultTarget != null ? _defaultTarget.DataflowBlockOptions :
_spscTarget
!.DataflowBlockOptions);
317
$"{(Common.GetNameForDebugger(this, _defaultTarget != null ? _defaultTarget.DataflowBlockOptions :
_spscTarget
!.DataflowBlockOptions))}, InputCount = {InputCountForDebugger}";
344
_spscDebugInfo = actionBlock.
_spscTarget
!.GetDebuggingInformation();