1 write to _sharedResources
System.Threading.Tasks.Dataflow (1)
Blocks\BatchedJoinBlock.cs (1)
330
_sharedResources
= new BatchedJoinBlockTargetSharedResources(
9 references to _sharedResources
System.Threading.Tasks.Dataflow (9)
Blocks\BatchedJoinBlock.cs (9)
340
_target1 = new BatchedJoinBlockTarget<T1>(
_sharedResources
);
341
_target2 = new BatchedJoinBlockTarget<T2>(
_sharedResources
);
342
_target3 = new BatchedJoinBlockTarget<T3>(
_sharedResources
);
415
Debug.Assert(
_sharedResources
!= null, "_sharedResources not initialized");
416
Debug.Assert(
_sharedResources
._incomingLock != null, "_sharedResources._incomingLock not initialized");
419
lock (
_sharedResources
._incomingLock)
421
if (!
_sharedResources
._decliningPermanently) _source.AddException(exception);
490
public long BatchesCreated { get { return _batchedJoinBlock.
_sharedResources
._batchesCreated; } }
492
public int RemainingItemsForBatch { get { return _batchedJoinBlock.
_sharedResources
._remainingItemsInBatch; } }