pekko/akka-docs/src/main/paradox/stream/operators/Source/lazilyAsync.md

25 lines
504 B
Markdown
Raw Normal View History

# lazilyAsync
`lazilyAsync` has been deprecated in 2.6.0, use `Source.lazyFutureSource` instead.
@ref[Source operators](../index.md#source-operators)
## Signature
## Description
`lazilyAsync` has been deprecated in 2.6.0, use @ref:[lazyFutureSource](lazyFutureSource.md) instead.
2019-10-16 17:02:12 +02:00
Defers creation and materialization of a `CompletionStage` until there is demand.
## Reactive Streams semantics
@@@div { .callout }
**emits** the future completes
**completes** after the future has completed
@@@