alsoToAll

Attaches the given Sources to this Flow, meaning that elements that pass through this Flow will also be sent to all those Sinks.

Fan-out operators

Signature

Source.alsoToAll Flow.alsoToAll

Description

Attaches the given Source s to this Flow, meaning that elements that pass through this Flow will also be sent to all those Sinks.

Reactive Streams semantics

emits when an element is available and demand exists both from the Sinks and the downstream

backpressures when downstream or any of the Sinks backpressures

completes when upstream completes

cancels when downstream or or any of the Sinks cancels

Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.