1 write to _source
System.Threading.Tasks.Dataflow (1)
17 references to _source
System.Threading.Tasks.Dataflow (17)
Blocks\JoinBlock.cs (17)
71_source.AddMessage(Tuple.Create(_target1!.GetOneMessage(), _target2!.GetOneMessage()));
76_source.AddException(exception);
85_ => _source.Complete(),
92_source.Completion.ContinueWith(static (completed, state) =>
101dataflowBlockOptions.CancellationToken, _source.Completion, static (state, _) => ((JoinBlock<T1, T2>)state!)._sharedResources.CompleteEachTarget(), this);
112return _source.LinkTo(target, linkOptions);
118return _source.TryReceive(filter, out item);
122public bool TryReceiveAll([NotNullWhen(true)] out IList<Tuple<T1, T2>>? items) { return _source.TryReceiveAll(out items); }
125public int OutputCount { get { return _source.OutputCount; } }
128public Task Completion { get { return _source.Completion; } }
165return _source.ConsumeMessage(messageHeader, target, out messageConsumed);
171return _source.ReserveMessage(messageHeader, target);
177_source.ReleaseReservation(messageHeader, target);
181private int OutputCountForDebugger { get { return _source.GetDebuggingInformation().OutputCount; } }
184public override string ToString() { return Common.GetNameForDebugger(this, _source.DataflowBlockOptions); }
188$"{Common.GetNameForDebugger(this, _source.DataflowBlockOptions)}, OutputCount = {OutputCountForDebugger}";
207_sourceDebuggingInformation = joinBlock._source.GetDebuggingInformation();