vertx / io.vertx.reactivex.core.json / FlowableUnmarshaller

FlowableUnmarshaller

open class FlowableUnmarshaller<T : Any, B : Any> : FlowableTransformer<B, T>

An operator to unmarshall json to pojos.

Author
Julien Viet

Constructors

<init>

FlowableUnmarshaller(unwrap: Function<B, Buffer>, mappedType: Class<T>)
FlowableUnmarshaller(unwrap: Function<B, Buffer>, mappedTypeRef: TypeReference<T>)
FlowableUnmarshaller(unwrap: Function<B, Buffer>, mappedType: Class<T>, mapper: ObjectMapper)
FlowableUnmarshaller(unwrap: Function<B, Buffer>, mappedTypeRef: TypeReference<T>, mapper: ObjectMapper)

Functions

apply

open fun apply(upstream: Flowable<B>): Publisher<T>