alsoTo
Attaches the given Sink
to this Flow
, meaning that elements that pass through this Flow
will also be sent to the Sink
.
Signature
Source.alsoTo
Source.alsoTo
Flow.alsoTo
Flow.alsoTo
Description
Attaches the given Sink
to this Flow
, meaning that elements that pass through this Flow
will also be sent to the Sink
.
Reactive Streams semantics
emits when an element is available and demand exists both from the Sink
and the downstream
backpressures when downstream or Sink
backpressures
completes when upstream completes
cancels when downstream or Sink
cancels