open class SingleUnmarshaller<T : Any, B : Any> : SingleTransformer<B, T>
An operator to unmarshall json to pojos.
Author
Julien Viet
SingleUnmarshaller(unwrap: Function<B, Buffer>, mappedType: Class<T>)SingleUnmarshaller(unwrap: Function<B, Buffer>, mappedTypeRef: TypeReference<T>)SingleUnmarshaller(unwrap: Function<B, Buffer>, mappedType: Class<T>, mapper: ObjectMapper)SingleUnmarshaller(unwrap: Function<B, Buffer>, mappedTypeRef: TypeReference<T>, mapper: ObjectMapper) |
open fun apply(upstream: Single<B>): SingleSource<T> |