20 implementations of Complete
System.Threading.Tasks.Dataflow (20)
Base\DataflowBlock.cs (7)
198
void IDataflowBlock.
Complete
() { _target.Complete(); }
738
void IDataflowBlock.
Complete
() { throw new NotSupportedException(SR.NotSupported_MemberNotNeeded); }
1381
void IDataflowBlock.
Complete
()
1504
void IDataflowBlock.
Complete
() => TrySetResult(false);
1576
public void
Complete
()
2207
void IDataflowBlock.
Complete
()
2717
void IDataflowBlock.
Complete
() { } // No-op
Blocks\ActionBlock.cs (1)
224
public void
Complete
()
Blocks\BatchBlock.cs (1)
99
public void
Complete
() { _target.Complete(exception: null, dropPendingMessages: false, releaseReservedMessages: false); }
Blocks\BatchedJoinBlock.cs (3)
147
public void
Complete
()
402
public void
Complete
()
602
public void
Complete
()
Blocks\BroadcastBlock.cs (1)
109
public void
Complete
()
Blocks\BufferBlock.cs (1)
147
public void
Complete
() { CompleteCore(exception: null, storeExceptionEvenIfAlreadyCompleting: false); }
Blocks\JoinBlock.cs (2)
134
public void
Complete
()
359
public void
Complete
()
Blocks\TransformBlock.cs (1)
333
public void
Complete
() { _target.Complete(exception: null, dropPendingMessages: false); }
Blocks\TransformManyBlock.cs (1)
545
public void
Complete
() { _target.Complete(exception: null, dropPendingMessages: false); }
Blocks\WriteOnceBlock.cs (1)
220
public void
Complete
()
Internal\TargetRegistry.cs (1)
348
void IDataflowBlock.
Complete
() { _target.Complete(); }
7 references to Complete
System.Threading.Tasks.Dataflow (7)
Base\DataflowBlock.cs (5)
198
void IDataflowBlock.Complete() { _target.
Complete
(); }
1387
void IDataflowBlock.Fault(Exception exception) { ((IDataflowBlock)this).
Complete
(); }
1578
_target.
Complete
();
2213
void IDataflowBlock.Fault(Exception exception) { ((IDataflowBlock)this).
Complete
(); }
2645
_target.
Complete
();
Internal\Common.cs (1)
557
else target.
Complete
();
Internal\TargetRegistry.cs (1)
348
void IDataflowBlock.Complete() { _target.
Complete
(); }