30 lines
795 B
Markdown
30 lines
795 B
Markdown
|
|
# Flow.flattenOptional
|
||
|
|
|
||
|
|
Collect the value of `Optional` from all the elements passing through this flow , empty `Optional` is filtered out.
|
||
|
|
|
||
|
|
@ref[Simple operators](../index.md#simple-operators)
|
||
|
|
|
||
|
|
## Signature
|
||
|
|
|
||
|
|
@apidoc[Flow.flattenOptional](Flow$) { java="#flattenOptional(akka.stream.javadsl.Flow)" }
|
||
|
|
|
||
|
|
|
||
|
|
## Description
|
||
|
|
|
||
|
|
Streams the elements through the given future flow once it successfully completes.
|
||
|
|
If the future fails the stream is failed.
|
||
|
|
|
||
|
|
## Reactive Streams semantics
|
||
|
|
|
||
|
|
@@@div { .callout }
|
||
|
|
|
||
|
|
**Emits when** the current @javadoc[Optional](java.util.Optional)'s value is present.
|
||
|
|
|
||
|
|
**Backpressures when** the value of the current @javadoc[Optional](java.util.Optional) is present and downstream backpressures.
|
||
|
|
|
||
|
|
**Completes when** upstream completes.
|
||
|
|
|
||
|
|
**Cancels when** downstream cancels.
|
||
|
|
@@@
|
||
|
|
|