Source.fromFutureSource

Deprecated by Source.futureSource.

Source operators

Signature

Source.fromFutureSourceSource.fromFutureSource

Description

fromFutureSource is deprecated, please use futureSource instead.

Streams the elements of the given future source once it successfully completes. If the future fails the stream is failed.

Reactive Streams semantics

emits the next value from the future source, once it has completed

completes after the future source completes