You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/main/paradox/stream/operators/index.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ These built-in sinks are available from @scala[`org.apache.pekko.stream.scaladsl
61
61
|Sink|<aname="combine"></a>@ref[combine](Sink/combine.md)|Combine several sinks into one using a user specified strategy|
62
62
|Sink|<aname="completionstagesink"></a>@ref[completionStageSink](Sink/completionStageSink.md)|Streams the elements to the given future sink once it successfully completes. |
63
63
|Sink|<aname="fold"></a>@ref[fold](Sink/fold.md)|Fold over emitted element with a function, where each invocation will get the new element and the result from the previous fold invocation.|
64
+
|Sink|<aname="foreach"></a>@ref[foreach](Sink/foreach.md)|Invoke a given procedure for each element received.|
64
65
|Sink|<aname="foreachasync"></a>@ref[foreachAsync](Sink/foreachAsync.md)|Invoke a given procedure asynchronously for each element received.|
65
66
|Sink|<aname="foreachparallel"></a>@ref[foreachParallel](Sink/foreachParallel.md)|Like `foreach` but allows up to `parallellism` procedure calls to happen in parallel.|
66
67
|Sink|<aname="frommaterializer"></a>@ref[fromMaterializer](Sink/fromMaterializer.md)|Defer the creation of a `Sink` until materialization and access `Materializer` and `Attributes`|
@@ -445,6 +446,7 @@ For more background see the @ref[Error Handling in Streams](../stream-error.md)
0 commit comments