1 write to _owningSource
System.Threading.Tasks.Dataflow (1)
Internal\SourceCore.cs (1)
113
_owningSource
= owningSource;
15 references to _owningSource
System.Threading.Tasks.Dataflow (15)
Internal\SourceCore.cs (15)
120
_targetRegistry = new TargetRegistry<TOutput>(
_owningSource
);
203
int count = _itemCountingFunc != null ? _itemCountingFunc(
_owningSource
, consumedMessageValue, null) : 1;
204
_itemsRemovedAction(
_owningSource
, count);
314
int count = _itemCountingFunc != null ? _itemCountingFunc(
_owningSource
, item!, null) : 1;
315
_itemsRemovedAction(
_owningSource
, count);
361
int count = _itemCountingFunc != null ? _itemCountingFunc(
_owningSource
, default(TOutput)!, items) : countReceived;
362
_itemsRemovedAction(
_owningSource
, count);
646
int count = _itemCountingFunc != null ? _itemCountingFunc(
_owningSource
, message!, null) : 1;
647
_itemsRemovedAction(
_owningSource
, count);
671
DataflowMessageStatus result = target.OfferMessage(header, message,
_owningSource
, consumeToAccept: false);
760
_owningSource
, _taskForOutputProcessing, DataflowEtwProvider.TaskLaunchedReason.OfferingOutputMessages, _messages.Count);
843
_completeAction(
_owningSource
);
972
etwLog.DataflowBlockCompleted(
_owningSource
);
981
var displaySource =
_owningSource
as IDebuggerDisplay;
982
return $"Block = \"{(displaySource != null ? displaySource.Content :
_owningSource
)}\"";