20 implementations of Complete
System.Threading.Tasks.Dataflow (20)
Base\DataflowBlock.cs (7)
180
void IDataflowBlock.
Complete
() { _target.Complete(); }
714
void IDataflowBlock.
Complete
() { throw new NotSupportedException(SR.NotSupported_MemberNotNeeded); }
1348
void IDataflowBlock.
Complete
()
1471
void IDataflowBlock.
Complete
() => TrySetResult(false);
1534
public void
Complete
()
2126
void IDataflowBlock.
Complete
()
2627
void IDataflowBlock.
Complete
() { } // No-op
Blocks\ActionBlock.cs (1)
218
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
()
399
public void
Complete
()
596
public void
Complete
()
Blocks\BroadcastBlock.cs (1)
106
public void
Complete
()
Blocks\BufferBlock.cs (1)
144
public void
Complete
() { CompleteCore(exception: null, storeExceptionEvenIfAlreadyCompleting: false); }
Blocks\JoinBlock.cs (2)
131
public void
Complete
()
350
public void
Complete
()
Blocks\TransformBlock.cs (1)
330
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)
214
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)
180
void IDataflowBlock.Complete() { _target.
Complete
(); }
1354
void IDataflowBlock.Fault(Exception exception) { ((IDataflowBlock)this).
Complete
(); }
1536
_target.
Complete
();
2132
void IDataflowBlock.Fault(Exception exception) { ((IDataflowBlock)this).
Complete
(); }
2555
_target.
Complete
();
Internal\Common.cs (1)
557
else target.
Complete
();
Internal\TargetRegistry.cs (1)
348
void IDataflowBlock.Complete() { _target.
Complete
(); }