| SinkForEachTIn Method |
A
SinkTIn, TMat that will invoke the given
action for each received element.
The sink is materialized into a
Task will be completed with success when reaching the
normal end of the stream, or completed with a failure if there is a failure signaled in
the stream..
Namespace:
Akka.Streams.Dsl
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public static Sink<TIn, Task> ForEach<TIn>(
Action<TIn> action
)
static member ForEach :
action : Action<'TIn> -> Sink<'TIn, Task>
Parameters
- action
- Type: SystemActionTIn
TBD
Type Parameters
- TIn
- TBD
Return Value
Type:
SinkTIn,
TaskTBD
See Also