lazily

Defers creation and materialization of a Source until there is demand.

Source operators

Signature

def lazily[T, M](create: () => Source[T, M]): Source[T, Future[M]]

Description

Defers creation and materialization of a Source until there is demand.

emits depends on the wrapped Source

completes depends on the wrapped Source

Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.