toFlowable

fun <T> Flux<T>.toFlowable(): Flowable<T>

Wraps a Flux instance into a Flowable instance, composing the micro-fusion properties of the Flux through.

Return

the new Flux instance

Parameters

the value type

fun <T> Mono<T>.toFlowable(): Flowable<T>

Wraps a Mono instance into a Flowable instance, composing the micro-fusion properties of the Flux through.

Return

the new Flux instance

Parameters

the value type