SimpleDataflow<T>.ForAll method (1 of 3)

Executes the specified action on each item in the pipeline.

public SimpleDataflow ForAll(Action<T> action)

Remarks

Implemented with a TransformBlock that returns the same items.

See Also


SimpleDataflow<T>.ForAll method (2 of 3)

Executes the specified action on each item in the pipeline.

public SimpleDataflow ForAll(Func<T, CancellationToken, Task> action)

Remarks

Implemented with a TransformBlock that returns the same items.

See Also


SimpleDataflow<T>.ForAll method (3 of 3)

Executes the specified action on each item in the pipeline.

public SimpleDataflow ForAll(Func<T, Task> action)

Remarks

Implemented with a TransformBlock that returns the same items.

See Also