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