1 write to _sharedResources
System.Threading.Tasks.Dataflow (1)
Blocks\BatchedJoinBlock.cs (1)
333
_sharedResources
= new BatchedJoinBlockTargetSharedResources(
9 references to _sharedResources
System.Threading.Tasks.Dataflow (9)
Blocks\BatchedJoinBlock.cs (9)
343
_target1 = new BatchedJoinBlockTarget<T1>(
_sharedResources
);
344
_target2 = new BatchedJoinBlockTarget<T2>(
_sharedResources
);
345
_target3 = new BatchedJoinBlockTarget<T3>(
_sharedResources
);
421
Debug.Assert(
_sharedResources
!= null, "_sharedResources not initialized");
422
Debug.Assert(
_sharedResources
._incomingLock != null, "_sharedResources._incomingLock not initialized");
425
lock (
_sharedResources
._incomingLock)
427
if (!
_sharedResources
._decliningPermanently) _source.AddException(exception);
496
public long BatchesCreated { get { return _batchedJoinBlock.
_sharedResources
._batchesCreated; } }
498
public int RemainingItemsForBatch { get { return _batchedJoinBlock.
_sharedResources
._remainingItemsInBatch; } }