io.reactivex.internal.operators.flowable.FlowableInternalHelper Java Examples
The following examples show how to use
io.reactivex.internal.operators.flowable.FlowableInternalHelper.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: FlowableUtils.java From RxBus with Apache License 2.0 | 5 votes |
public static <T> Disposable subscribe(Flowable<T> flowable, Consumer<? super T> onNext, Consumer<? super Throwable> onError) { return subscribe(flowable, onNext, onError, Functions.EMPTY_ACTION, FlowableInternalHelper.RequestMax.INSTANCE ); }
Example #2
Source File: FlowableLife.java From rxjava-RxLife with Apache License 2.0 | 4 votes |
@Override public final Disposable subscribe() { return subscribe(Functions.emptyConsumer(), Functions.ON_ERROR_MISSING, Functions.EMPTY_ACTION, FlowableInternalHelper.RequestMax.INSTANCE); }
Example #3
Source File: FlowableLife.java From rxjava-RxLife with Apache License 2.0 | 4 votes |
public final Disposable subscribe(Consumer<? super T> onNext) { return subscribe(onNext, Functions.ON_ERROR_MISSING, Functions.EMPTY_ACTION, FlowableInternalHelper.RequestMax.INSTANCE); }
Example #4
Source File: FlowableLife.java From rxjava-RxLife with Apache License 2.0 | 4 votes |
public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super Throwable> onError) { return subscribe(onNext, onError, Functions.EMPTY_ACTION, FlowableInternalHelper.RequestMax.INSTANCE); }
Example #5
Source File: FlowableLife.java From rxjava-RxLife with Apache License 2.0 | 4 votes |
public final Disposable subscribe(Consumer<? super T> onNext, Consumer<? super Throwable> onError, Action onComplete) { return subscribe(onNext, onError, onComplete, FlowableInternalHelper.RequestMax.INSTANCE); }