AutoDisposeConverter

interface AutoDisposeConverter<@NonNull() T> : FlowableConverter<T, FlowableSubscribeProxy<T>> , ParallelFlowableConverter<T, ParallelFlowableSubscribeProxy<T>> , ObservableConverter<T, ObservableSubscribeProxy<T>> , MaybeConverter<T, MaybeSubscribeProxy<T>> , SingleConverter<T, SingleSubscribeProxy<T>> , CompletableConverter<CompletableSubscribeProxy>

A custom converter that implements all the RxJava types converters, for use with the {@code as()} operator.

Parameters

<T>

the type.

Functions

apply
Link copied to clipboard
abstract fun apply(upstream: Flowable<T>): R