hu.akarnokd.rxjava3.operators.Flowables Maven / Gradle / Ivy
Show all versions of rxjava3-extensions Show documentation
/*
* Copyright 2016-2019 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.rxjava3.operators;
import java.util.Comparator;
import java.util.concurrent.TimeUnit;
import org.reactivestreams.Publisher;
import io.reactivex.rxjava3.annotations.*;
import io.reactivex.rxjava3.core.*;
import io.reactivex.rxjava3.functions.*;
import io.reactivex.rxjava3.internal.functions.*;
import io.reactivex.rxjava3.internal.schedulers.ImmediateThinScheduler;
import io.reactivex.rxjava3.plugins.RxJavaPlugins;
import io.reactivex.rxjava3.schedulers.Schedulers;
/**
* Utility class to create Flowable sources.
*/
public final class Flowables {
/** Utility class. */
private Flowables() {
throw new IllegalStateException("No instances!");
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by their natural order).
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static > Flowable orderedMerge(Publisher... sources) {
return orderedMerge(Functions.naturalOrder(), false, Flowable.bufferSize(), sources);
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by their natural order) and allows delaying any error they may signal.
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param delayErrors if true, source errors are delayed until all sources terminate in some way
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static > Flowable orderedMerge(boolean delayErrors, Publisher... sources) {
return orderedMerge(Functions.naturalOrder(), delayErrors, Flowable.bufferSize(), sources);
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by their natural order), allows delaying any error they may signal and sets the prefetch
* amount when requesting from these Publishers.
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param delayErrors if true, source errors are delayed until all sources terminate in some way
* @param prefetch the number of items to prefetch from the sources
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static > Flowable orderedMerge(boolean delayErrors, int prefetch, Publisher... sources) {
return orderedMerge(Functions.naturalOrder(), delayErrors, prefetch, sources);
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by the Comparator).
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param comparator the comparator to use for comparing items;
* it is called with the last known smallest in its first argument
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable orderedMerge(Comparator super T> comparator, Publisher... sources) {
return orderedMerge(comparator, false, Flowable.bufferSize(), sources);
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by the Comparator) and allows delaying any error they may signal.
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param comparator the comparator to use for comparing items;
* it is called with the last known smallest in its first argument
* @param delayErrors if true, source errors are delayed until all sources terminate in some way
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable orderedMerge(Comparator super T> comparator, boolean delayErrors, Publisher... sources) {
return orderedMerge(comparator, delayErrors, Flowable.bufferSize(), sources);
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by the Comparator), allows delaying any error they may signal and sets the prefetch
* amount when requesting from these Publishers.
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param comparator the comparator to use for comparing items;
* it is called with the last known smallest in its first argument
* @param delayErrors if true, source errors are delayed until all sources terminate in some way
* @param prefetch the number of items to prefetch from the sources
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable orderedMerge(Comparator super T> comparator, boolean delayErrors, int prefetch, Publisher... sources) {
ObjectHelper.requireNonNull(comparator, "comparator is null");
ObjectHelper.requireNonNull(sources, "sources is null");
ObjectHelper.verifyPositive(prefetch, "prefetch");
return RxJavaPlugins.onAssembly(new FlowableOrderedMerge(sources, null, comparator, delayErrors, prefetch));
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by the Comparator).
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param comparator the comparator to use for comparing items;
* it is called with the last known smallest in its first argument
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable orderedMerge(Iterable extends Publisher> sources, Comparator super T> comparator) {
return orderedMerge(sources, comparator, false, Flowable.bufferSize());
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by the Comparator) and allows delaying any error they may signal.
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param comparator the comparator to use for comparing items;
* it is called with the last known smallest in its first argument
* @param delayErrors if true, source errors are delayed until all sources terminate in some way
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable orderedMerge(Iterable extends Publisher> sources, Comparator super T> comparator, boolean delayErrors) {
return orderedMerge(sources, comparator, delayErrors, Flowable.bufferSize());
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by the Comparator), allows delaying any error they may signal and sets the prefetch
* amount when requesting from these Publishers.
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param comparator the comparator to use for comparing items;
* it is called with the last known smallest in its first argument
* @param delayErrors if true, source errors are delayed until all sources terminate in some way
* @param prefetch the number of items to prefetch from the sources
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable orderedMerge(Iterable extends Publisher> sources, Comparator super T> comparator, boolean delayErrors, int prefetch) {
ObjectHelper.requireNonNull(comparator, "comparator is null");
ObjectHelper.requireNonNull(sources, "sources is null");
ObjectHelper.verifyPositive(prefetch, "prefetch");
return RxJavaPlugins.onAssembly(new FlowableOrderedMerge(null, sources, comparator, delayErrors, prefetch));
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by their natural order).
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static > Flowable orderedMerge(Iterable extends Publisher> sources) {
return orderedMerge(sources, Functions.naturalOrder(), false, Flowable.bufferSize());
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by their natural order) and allows delaying any error they may signal.
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param delayErrors if true, source errors are delayed until all sources terminate in some way
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static > Flowable orderedMerge(Iterable extends Publisher> sources, boolean delayErrors) {
return orderedMerge(sources, Functions.naturalOrder(), delayErrors, Flowable.bufferSize());
}
/**
* Merges the source Publishers in an ordered fashion picking the smallest of the available value from
* them (determined by their natural order), allows delaying any error they may signal and sets the prefetch
* amount when requesting from these Publishers.
* @param the value type of all sources
* @param sources the iterable sequence of sources
* @param delayErrors if true, source errors are delayed until all sources terminate in some way
* @param prefetch the number of items to prefetch from the sources
* @return the new Flowable instance
*
* @since 0.8.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static > Flowable orderedMerge(Iterable extends Publisher> sources, boolean delayErrors, int prefetch) {
return orderedMerge(sources, Functions.naturalOrder(), delayErrors, prefetch);
}
/**
* Repeats a scalar value indefinitely.
* @param the value type
* @param item the value to repeat
* @return the new Flowable instance
*
* @since 0.14.2
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable repeat(T item) {
ObjectHelper.requireNonNull(item, "item is null");
return RxJavaPlugins.onAssembly(new FlowableRepeatScalar(item));
}
/**
* Repeatedly calls the given Supplier to produce items indefinitely.
* @param the value type
* @param supplier the Supplier to call
* @return the new Flowable instance
*
* @since 0.14.2
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable repeatSupplier(Supplier supplier) {
ObjectHelper.requireNonNull(supplier, "supplier is null");
return RxJavaPlugins.onAssembly(new FlowableRepeatSupplier(supplier));
}
/**
* Periodically tries to emit an ever increasing long value or
* buffers (efficiently) such emissions until the downstream requests.
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and
* no emission is lost, however, the timing of the reception of the
* values is now dependent on the downstream backpressure.
* - Scheduler:
* - The operator uses the {@code computation} {@link Scheduler} to time
* the emission and likely deliver the value (unless backpressured).
*
*
* @param period the emission period (including the delay for the first emission)
* @param unit the emission time unit
* @return the new Flowable instance
*
* @since 0.15.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.COMPUTATION)
public static Flowable intervalBackpressure(long period, TimeUnit unit) {
return intervalBackpressure(period, period, unit, Schedulers.computation());
}
/**
* Periodically tries to emit an ever increasing long value or
* buffers (efficiently) such emissions until the downstream requests.
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and
* no emission is lost, however, the timing of the reception of the
* values is now dependent on the downstream backpressure.
* - Scheduler:
* - The operator uses the {@code computation} {@link Scheduler} to time
* the emission and likely deliver the value (unless backpressured).
*
*
* @param period the emission period (including the delay for the first emission)
* @param unit the emission time unit
* @param scheduler the scheduler to use for timing and likely emitting items
* @return the new Flowable instance
*
* @since 0.15.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.CUSTOM)
public static Flowable intervalBackpressure(long period, TimeUnit unit, Scheduler scheduler) {
return intervalBackpressure(period, period, unit, scheduler);
}
/**
* Periodically tries to emit an ever increasing long value or
* buffers (efficiently) such emissions until the downstream requests.
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and
* no emission is lost, however, the timing of the reception of the
* values is now dependent on the downstream backpressure.
* - Scheduler:
* - The operator uses the {@code computation} {@link Scheduler} to time
* the emission and likely deliver the value (unless backpressured).
*
*
* @param initialDelay the initial delay before emitting the first 0L
* @param period the emission period after the first emission
* @param unit the emission time unit
* @return the new Flowable instance
*
* @since 0.15.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.COMPUTATION)
public static Flowable intervalBackpressure(long initialDelay, long period, TimeUnit unit) {
return intervalBackpressure(initialDelay, period, unit, Schedulers.computation());
}
/**
* Periodically tries to emit an ever increasing long value or
* buffers (efficiently) such emissions until the downstream requests.
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and
* no emission is lost, however, the timing of the reception of the
* values is now dependent on the downstream backpressure.
* - Scheduler:
* - The operator uses the {@link Scheduler} provided to time
* the emission and likely deliver the value (unless backpressured).
*
*
* @param initialDelay the initial delay before emitting the first 0L
* @param period the emission period (including the delay for the first emission)
* @param unit the emission time unit
* @param scheduler the scheduler to use for timing and likely emitting items
* @return the new Flowable instance
*
* @since 0.15.0
*/
@BackpressureSupport(BackpressureKind.FULL)
@SchedulerSupport(SchedulerSupport.CUSTOM)
public static Flowable intervalBackpressure(long initialDelay, long period, TimeUnit unit, Scheduler scheduler) {
return RxJavaPlugins.onAssembly(new FlowableIntervalBackpressure(initialDelay, period, unit, scheduler));
}
/**
* Zips the latest available values of the source Publishers via a combiner function where the
* emission rate is determined by the slowest Publisher and the downstream consumption rate.
*
* Non-consumed source values are overwritten by newer values. Unlike {@code combineLatest}, source
* values are not reused to form new combinations.
*
* If any of the sources runs out of items, the other sources are cancelled and the sequence completes.
*
* A: ---o-o-o------o-o----o---o-|-------
* B: ---------x-x--x-------x-----x--x---
* ======= zipLatest (o, x -> M) ========
* R: ---------M----M-------M-----M|-----
*
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and consumes
* the source Publishers in an unbounded manner, keeping only their latest values temporarily.
* - Scheduler:
* - The operator doesn't run on any particular {@link Scheduler}
* and the combined item emission happens on the thread that won the internal emission-right race.
*
*
* @param the common source value type
* @param the result type
* @param combiner the function receiving the latest values of the sources and returns a value
* to be emitted to the downstream.
* @param sources the array of source Publishers to zip/combine
* @return the new Flowable instance.
*/
@BackpressureSupport(BackpressureKind.UNBOUNDED_IN)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable zipLatest(Function super Object[], ? extends R> combiner, Publisher extends T>... sources) {
return zipLatest(combiner, ImmediateThinScheduler.INSTANCE, sources);
}
/**
* Zips the latest available values of the source Publishers via a combiner function where the
* emission rate is determined by the slowest Publisher and the downstream consumption rate.
*
* Non-consumed source values are overwritten by newer values. Unlike {@code combineLatest}, source
* values are not reused to form new combinations.
*
* If any of the sources runs out of items, the other sources are cancelled and the sequence completes.
*
* A: ---o-o-o------o-o----o---o-|-------
* B: ---------x-x--x-------x-----x--x---
* ======= zipLatest (o, x -> M) ========
* R: ---------M----M-------M-----M|-----
*
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and consumes
* the source Publishers in an unbounded manner, keeping only their latest values temporarily.
* - Scheduler:
* - The operator emits the combined items on the {@link Scheduler} provided.
*
*
* @param the common source value type
* @param the result type
* @param combiner the function receiving the latest values of the sources and returns a value
* to be emitted to the downstream.
* @param sources the array of source Publishers to zip/combine
* @param scheduler the Scheduler to use for emitting items and/or terminal signals
* @return the new Flowable instance.
*/
@BackpressureSupport(BackpressureKind.UNBOUNDED_IN)
@SchedulerSupport(SchedulerSupport.CUSTOM)
public static Flowable zipLatest(Function super Object[], ? extends R> combiner, Scheduler scheduler, Publisher extends T>... sources) {
ObjectHelper.requireNonNull(combiner, "combiner is null");
ObjectHelper.requireNonNull(scheduler, "scheduler is null");
ObjectHelper.requireNonNull(sources, "sources is null");
return RxJavaPlugins.onAssembly(new FlowableZipLatest(sources, null, combiner, scheduler));
}
/**
* Zips the latest available values of the source Publishers via a combiner function where the
* emission rate is determined by the slowest Publisher and the downstream consumption rate.
*
* Non-consumed source values are overwritten by newer values. Unlike {@code combineLatest}, source
* values are not reused to form new combinations.
*
* If any of the sources runs out of items, the other sources are cancelled and the sequence completes.
*
* A: ---o-o-o------o-o----o---o-|-------
* B: ---------x-x--x-------x-----x--x---
* ======= zipLatest (o, x -> M) ========
* R: ---------M----M-------M-----M|-----
*
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and consumes
* the source Publishers in an unbounded manner, keeping only their latest values temporarily.
* - Scheduler:
* - The operator doesn't run on any particular {@link Scheduler} scheduler
* and the combined item emission happens on the thread that won the internal emission-right race.
*
*
* @param the common source value type
* @param the result type
* @param combiner the function receiving the latest values of the sources and returns a value
* to be emitted to the downstream.
* @param sources the array of source Publishers to zip/combine
* @return the new Flowable instance.
*/
@BackpressureSupport(BackpressureKind.UNBOUNDED_IN)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable zipLatest(Iterable extends Publisher extends T>> sources, Function super Object[], ? extends R> combiner) {
return zipLatest(sources, combiner, ImmediateThinScheduler.INSTANCE);
}
/**
* Zips the latest available values of the source Publishers via a combiner function where the
* emission rate is determined by the slowest Publisher and the downstream consumption rate.
*
* Non-consumed source values are overwritten by newer values. Unlike {@code combineLatest}, source
* values are not reused to form new combinations.
*
* If any of the sources runs out of items, the other sources are cancelled and the sequence completes.
*
* A: ---o-o-o------o-o----o---o-|-------
* B: ---------x-x--x-------x-----x--x---
* ======= zipLatest (o, x -> M) ========
* R: ---------M----M-------M-----M|-----
*
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and consumes
* the source Publishers in an unbounded manner, keeping only their latest values temporarily.
* - Scheduler:
* - The operator emits the combined items on the {@link Scheduler} provided.
*
*
* @param the common source value type
* @param the result type
* @param combiner the function receiving the latest values of the sources and returns a value
* to be emitted to the downstream.
* @param sources the array of source Publishers to zip/combine
* @param scheduler the Scheduler to use for emitting items and/or terminal signals
* @return the new Flowable instance.
*/
@BackpressureSupport(BackpressureKind.UNBOUNDED_IN)
@SchedulerSupport(SchedulerSupport.CUSTOM)
public static Flowable zipLatest(Iterable extends Publisher extends T>> sources, Function super Object[], ? extends R> combiner, Scheduler scheduler) {
ObjectHelper.requireNonNull(sources, "sources is null");
ObjectHelper.requireNonNull(combiner, "combiner is null");
ObjectHelper.requireNonNull(scheduler, "scheduler is null");
return RxJavaPlugins.onAssembly(new FlowableZipLatest(null, sources, combiner, scheduler));
}
/**
* Zips the latest available values of the source Publishers via a combiner function where the
* emission rate is determined by the slowest Publisher and the downstream consumption rate.
*
* Non-consumed source values are overwritten by newer values. Unlike {@code combineLatest}, source
* values are not reused to form new combinations.
*
* If any of the sources runs out of items, the other sources are cancelled and the sequence completes.
*
* A: ---o-o-o------o-o----o---o-|-------
* B: ---------x-x--x-------x-----x--x---
* ======= zipLatest (o, x -> M) ========
* R: ---------M----M-------M-----M|-----
*
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and consumes
* the source Publishers in an unbounded manner, keeping only their latest values temporarily.
* - Scheduler:
* - The operator doesn't run on any particular {@link Scheduler} scheduler
* and the combined item emission happens on the thread that won the internal emission-right race.
*
*
* @param the value type of the first source Publisher
* @param the value type of the second source Publisher
* @param the result type
* @param combiner the function receiving the latest values of the sources and returns a value
* to be emitted to the downstream.
* @param source1 the first source Publisher instance
* @param source2 the second source Publisher instance
* @return the new Flowable instance.
*/
@BackpressureSupport(BackpressureKind.UNBOUNDED_IN)
@SchedulerSupport(SchedulerSupport.NONE)
public static Flowable zipLatest(Publisher source1, Publisher source2, BiFunction super T1, ? super T2, ? extends R> combiner) {
return zipLatest(source1, source2, combiner, ImmediateThinScheduler.INSTANCE);
}
/**
* Zips the latest available values of the source Publishers via a combiner function where the
* emission rate is determined by the slowest Publisher and the downstream consumption rate.
*
* Non-consumed source values are overwritten by newer values. Unlike {@code combineLatest}, source
* values are not reused to form new combinations.
*
* If any of the sources runs out of items, the other sources are cancelled and the sequence completes.
*
* A: ---o-o-o------o-o----o---o-|-------
* B: ---------x-x--x-------x-----x--x---
* ======= zipLatest (o, x -> M) ========
* R: ---------M----M-------M-----M|-----
*
*
* - Backpressure:
* - The operator honors the backpressure of the downstream and consumes
* the source Publishers in an unbounded manner, keeping only their latest values temporarily.
* - Scheduler:
* - The operator emits the combined items on the {@link Scheduler} provided.
*
*
* @param the value type of the first source Publisher
* @param the value type of the second source Publisher
* @param the result type
* @param combiner the function receiving the latest values of the sources and returns a value
* to be emitted to the downstream.
* @param source1 the first source Publisher instance
* @param source2 the second source Publisher instance
* @param scheduler the Scheduler to use for emitting items and/or terminal signals
* @return the new Flowable instance.
*/
@BackpressureSupport(BackpressureKind.UNBOUNDED_IN)
@SchedulerSupport(SchedulerSupport.CUSTOM)
@SuppressWarnings("unchecked")
public static Flowable zipLatest(Publisher source1, Publisher source2, BiFunction super T1, ? super T2, ? extends R> combiner, Scheduler scheduler) {
ObjectHelper.requireNonNull(source1, "source1 is null");
ObjectHelper.requireNonNull(source2, "source2 is null");
ObjectHelper.requireNonNull(combiner, "combiner is null");
ObjectHelper.requireNonNull(scheduler, "scheduler is null");
return RxJavaPlugins.onAssembly(new FlowableZipLatest