hu.akarnokd.rxjava2.async.AsyncFlowable Maven / Gradle / Ivy
Show all versions of rxjava2-extensions Show documentation
/*
* Copyright 2016-2017 David Karnok
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package hu.akarnokd.rxjava2.async;
import java.util.concurrent.*;
import org.reactivestreams.*;
import hu.akarnokd.rxjava2.functions.*;
import io.reactivex.*;
import io.reactivex.disposables.Disposable;
import io.reactivex.exceptions.*;
import io.reactivex.functions.*;
import io.reactivex.internal.disposables.SequentialDisposable;
import io.reactivex.internal.functions.Functions;
import io.reactivex.internal.subscribers.LambdaSubscriber;
import io.reactivex.plugins.RxJavaPlugins;
import io.reactivex.processors.*;
import io.reactivex.schedulers.Schedulers;
/**
* Utility methods to convert functions and actions into asynchronous operations through the Publisher/Subscriber
* pattern.
*/
public final class AsyncFlowable {
/** Utility class. */
private AsyncFlowable() {
throw new IllegalStateException("No instances!");
}
/**
* Invokes the specified function asynchronously and returns an Flowable that emits the result.
*
* Note: The function is called immediately and once, not whenever an observer subscribes to the resulting
* Flowable. Multiple subscriptions to this Flowable observe the same return value.
*
*
*
* - Backpressure:
* - The returned Flowable honors downstream backpressure.
* - Scheduler:
* - {@code start} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the result value type
* @param func function to run asynchronously
* @return an Flowable that emits the function's result value, or notifies observers of an exception
* @see RxJava Wiki: start()
* @see MSDN: Observable.Start
*/
public static Flowable start(Callable extends T> func) {
return start(func, Schedulers.computation());
}
/**
* Invokes the specified function asynchronously on the specified Scheduler and returns an Flowable that
* emits the result.
*
* Note: The function is called immediately and once, not whenever an observer subscribes to the resulting
* Flowable. Multiple subscriptions to this Flowable observe the same return value.
*
*
*
* - Backpressure:
* - The returned Flowable honors downstream backpressure.
* - Scheduler:
* - You specify the {@link Scheduler} {@code start} works on.
*
*
* @param the result value type
* @param func function to run asynchronously
* @param scheduler Scheduler to run the function on
* @return an Flowable that emits the function's result value, or notifies observers of an exception
* @see RxJava Wiki: start()
* @see MSDN: Observable.Start
*/
public static Flowable start(Callable extends T> func, Scheduler scheduler) {
return Flowable.fromCallable(func).subscribeOn(scheduler).subscribeWith(AsyncProcessor.create());
}
/**
* Convert a synchronous action call into an asynchronous function call through a Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static Supplier> toAsync(Action action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through a Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the result value type
* @param func the function to convert
* @return a function that returns an Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static Supplier> toAsync(Callable extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through a Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param first parameter type of the action
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction> toAsync(Consumer super T1> action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through a Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param first parameter type of the action
* @param the result type
* @param func the function to convert
* @return a function that returns an Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction> toAsync(Function super T1, ? extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through a Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param action the action to convert
* @return a function that returns a Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainBiFunction> toAsync(BiConsumer super T1, ? super T2> action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through a Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the result type
* @param func the function to convert
* @return a function that returns a Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainBiFunction> toAsync(BiFunction super T1, ? super T2, ? extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction3> toAsync(Consumer3 super T1, ? super T2, ? super T3> action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the result type
* @param func the function to convert
* @return a function that returns an Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction3> toAsync(Function3 super T1, ? super T2, ? super T3, ? extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction4> toAsync(Consumer4 super T1, ? super T2, ? super T3, ? super T4> action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the result type
* @param func the function to convert
* @return a function that returns an Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction4> toAsync(Function4 super T1, ? super T2, ? super T3, ? super T4, ? extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction5> toAsync(Consumer5 super T1, ? super T2, ? super T3, ? super T4, ? super T5> action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param the result type
* @param func the function to convert
* @return a function that returns an Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction5> toAsync(Function5 super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param the sixth parameter type
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction6> toAsync(Consumer6 super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6> action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param the sixth parameter type
* @param the result type
* @param func the function to convert
* @return a function that returns an Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction6> toAsync(Function6 super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param the sixth parameter type
* @param the seventh parameter type
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction7> toAsync(Consumer7 super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7> action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param the sixth parameter type
* @param the seventh parameter type
* @param the result type
* @param func the function to convert
* @return a function that returns an Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction7> toAsync(Function7 super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param the sixth parameter type
* @param the seventh parameter type
* @param the eighth parameter type
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction8> toAsync(Consumer8 super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8> action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param the sixth parameter type
* @param the seventh parameter type
* @param the eighth parameter type
* @param the result type
* @param func the function to convert
* @return a function that returns an Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction8> toAsync(Function8 super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param the sixth parameter type
* @param the seventh parameter type
* @param the eighth parameter type
* @param the ninth parameter type
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction9> toAsync(Consumer9 super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? super T9> action) {
return toAsync(action, Schedulers.computation());
}
/**
* Convert a synchronous function call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsync} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param the first parameter type
* @param the second parameter type
* @param the third parameter type
* @param the fourth parameter type
* @param the fifth parameter type
* @param the sixth parameter type
* @param the seventh parameter type
* @param the eighth parameter type
* @param the ninth parameter type
* @param the result type
* @param func the function to convert
* @return a function that returns an Flowable that executes the {@code func} and emits its returned value
* @see RxJava Wiki: toAsync()
* @see MSDN: Observable.ToAsync
*/
public static PlainFunction9> toAsync(Function9 super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? super T9, ? extends R> func) {
return toAsync(func, Schedulers.computation());
}
/**
* Convert a synchronous action call into an asynchronous function call through an Flowable.
*
*
*
* - Backpressure:
* - The Flowable returned by the Callable honors downstream backpressure.
* - Scheduler:
* - {@code toAsyncArray} by default operates on the {@code computation} {@link Scheduler}.
*
*
* @param action the action to convert
* @return a function that returns an Flowable that executes the {@code action} and emits {@code null}
* @see RxJava Wiki: toAsync()
*/
public static PlainFunction