public final class FxObservableTransformers
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnCompleteCount(io.reactivex.functions.Consumer<java.lang.Integer> onComplete)
Performs an action on onComplete with the provided emission count
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnCompleteCountFx(io.reactivex.functions.Consumer<java.lang.Integer> onComplete)
Performs an action on FX thread on onCompleted with the provided emission count
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnCompleteFx(io.reactivex.functions.Action onCompleted)
Performs a given Action on the FX thread when onCompleted is called
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnDisposeFx(io.reactivex.functions.Action onDipsose)
Performs the provided onTerminate action on the FX thread
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnErrorCount(io.reactivex.functions.Consumer<java.lang.Integer> onError)
Performs an action on onError with the provided emission count
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnErrorCountFx(io.reactivex.functions.Consumer<java.lang.Integer> onError)
Performs an action on FX thread on onError with the provided emission count
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnErrorFx(io.reactivex.functions.Consumer<java.lang.Throwable> onError)
Performs a given action on a Throwable on the FX thread in the event of an onError
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnNextCount(io.reactivex.functions.Consumer<java.lang.Integer> onNext)
Performs an action on onNext with the provided emission count
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnNextCountFx(io.reactivex.functions.Consumer<java.lang.Integer> onNext)
Performs an action on FX thread on onNext with the provided emission count
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnNextFx(io.reactivex.functions.Consumer<T> onNext)
Performs a given action for each item on the FX thread
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnSubscribeFx(io.reactivex.functions.Consumer<io.reactivex.disposables.Disposable> subscribe)
Performs a given Action on the FX thread when subscribed to
|
static <T> io.reactivex.ObservableTransformer<T,T> |
doOnTerminateFx(io.reactivex.functions.Action onTerminate)
Performs the provided onTerminate action on the FX thread
|
public static <T> io.reactivex.ObservableTransformer<T,T> doOnNextFx(io.reactivex.functions.Consumer<T> onNext)
T - onNext - public static <T> io.reactivex.ObservableTransformer<T,T> doOnErrorFx(io.reactivex.functions.Consumer<java.lang.Throwable> onError)
T - onError - public static <T> io.reactivex.ObservableTransformer<T,T> doOnCompleteFx(io.reactivex.functions.Action onCompleted)
T - onCompleted - public static <T> io.reactivex.ObservableTransformer<T,T> doOnSubscribeFx(io.reactivex.functions.Consumer<io.reactivex.disposables.Disposable> subscribe)
T - subscribe - public static <T> io.reactivex.ObservableTransformer<T,T> doOnTerminateFx(io.reactivex.functions.Action onTerminate)
T - onTerminate - public static <T> io.reactivex.ObservableTransformer<T,T> doOnDisposeFx(io.reactivex.functions.Action onDipsose)
T - onDipsose - public static <T> io.reactivex.ObservableTransformer<T,T> doOnNextCount(io.reactivex.functions.Consumer<java.lang.Integer> onNext)
T - onNext - public static <T> io.reactivex.ObservableTransformer<T,T> doOnCompleteCount(io.reactivex.functions.Consumer<java.lang.Integer> onComplete)
T - onComplete - public static <T> io.reactivex.ObservableTransformer<T,T> doOnErrorCount(io.reactivex.functions.Consumer<java.lang.Integer> onError)
T - onError - public static <T> io.reactivex.ObservableTransformer<T,T> doOnNextCountFx(io.reactivex.functions.Consumer<java.lang.Integer> onNext)
T - onNext - public static <T> io.reactivex.ObservableTransformer<T,T> doOnCompleteCountFx(io.reactivex.functions.Consumer<java.lang.Integer> onComplete)
T - onComplete - public static <T> io.reactivex.ObservableTransformer<T,T> doOnErrorCountFx(io.reactivex.functions.Consumer<java.lang.Integer> onError)
T - onError -