2018-04-18 10:26:53 +02:00
|
|
|
# lazilyAsync
|
|
|
|
|
|
2019-11-20 10:58:05 +01:00
|
|
|
`lazilyAsync` has been deprecated in 2.6.0, use `Source.lazyFutureSource` instead.
|
2018-04-18 10:26:53 +02:00
|
|
|
|
2018-05-29 17:00:48 +09:00
|
|
|
@ref[Source operators](../index.md#source-operators)
|
2018-04-18 11:44:37 +02:00
|
|
|
|
2018-04-18 10:26:53 +02:00
|
|
|
## Signature
|
|
|
|
|
|
|
|
|
|
## Description
|
|
|
|
|
|
2019-11-20 10:58:05 +01:00
|
|
|
`lazilyAsync` has been deprecated in 2.6.0, use @ref:[lazyFutureSource](lazyFutureSource.md) instead.
|
2019-10-16 17:02:12 +02:00
|
|
|
|
2018-04-18 10:26:53 +02:00
|
|
|
Defers creation and materialization of a `CompletionStage` until there is demand.
|
|
|
|
|
|
2019-10-04 15:46:05 +02:00
|
|
|
## Reactive Streams semantics
|
2018-04-18 10:26:53 +02:00
|
|
|
|
|
|
|
|
@@@div { .callout }
|
|
|
|
|
|
|
|
|
|
**emits** the future completes
|
|
|
|
|
|
|
|
|
|
**completes** after the future has completed
|
|
|
|
|
|
|
|
|
|
@@@
|
|
|
|
|
|