8 references to Completion
System.Threading.Tasks.Dataflow (8)
Blocks\BroadcastBlock.cs (8)
91
_source.
Completion
.ContinueWith(static (completed, state) =>
100
dataflowBlockOptions.CancellationToken, _source.
Completion
, static (state, _) => ((BroadcastBlock<T>)state!).Complete(), this);
163
public Task Completion { get { return _source.
Completion
; } }
1163
Debug.Assert(!
Completion
.IsCompleted ||
Completion
.IsFaulted, "The block must either not be completed or be faulted if we're still storing exceptions.");
1175
Debug.Assert(!
Completion
.IsCompleted ||
Completion
.IsFaulted, "The block must either not be completed or be faulted if we're still storing exceptions.");
1227
public bool IsCompleted { get { return _source.
Completion
.IsCompleted; } }