All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hu.akarnokd.rxjava2.operators.Flowables Maven / Gradle / Ivy

There is a newer version: 0.20.10
Show newest version
/*
 * 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.operators;

import java.util.Comparator;
import java.util.concurrent.*;

import org.reactivestreams.Publisher;

import io.reactivex.*;
import io.reactivex.annotations.*;
import io.reactivex.functions.*;
import io.reactivex.internal.functions.*;
import io.reactivex.internal.schedulers.ImmediateThinScheduler;
import io.reactivex.plugins.RxJavaPlugins;
import io.reactivex.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 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 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 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> sources, Comparator 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> sources, Comparator 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> sources, Comparator 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> 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> 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> 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 Callable to produce items indefinitely.
     * @param  the value type
     * @param callable the Callable to call
     * @return the new Flowable instance
     * 
     * @since 0.14.2
     */
    @BackpressureSupport(BackpressureKind.FULL)
    @SchedulerSupport(SchedulerSupport.NONE)
    public static  Flowable repeatCallable(Callable callable) {
        ObjectHelper.requireNonNull(callable, "callable is null");
        return RxJavaPlugins.onAssembly(new FlowableRepeatCallable(callable));
    }

    /**
     * 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 combiner, Publisher... 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 combiner, Scheduler scheduler, Publisher... 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> sources, Function 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> sources, Function 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 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 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( new Publisher[] { source1, source2 }, null, Functions.toFunction(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 value type of the third 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 source3 the third source Publisher instance * @return the new Flowable instance. */ @BackpressureSupport(BackpressureKind.UNBOUNDED_IN) @SchedulerSupport(SchedulerSupport.NONE) public static Flowable zipLatest(Publisher source1, Publisher source2, Publisher source3, Function3 combiner) { return zipLatest(source1, source2, source3, 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 value type of the third 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 source3 the third 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, Publisher source3, Function3 combiner, Scheduler scheduler) { ObjectHelper.requireNonNull(source1, "source1 is null"); ObjectHelper.requireNonNull(source2, "source2 is null"); ObjectHelper.requireNonNull(source3, "source3 is null"); ObjectHelper.requireNonNull(combiner, "combiner is null"); ObjectHelper.requireNonNull(scheduler, "scheduler is null"); return RxJavaPlugins.onAssembly(new FlowableZipLatest( new Publisher[] { source1, source2, source3 }, null, Functions.toFunction(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 value type of the third source Publisher * @param the value type of the fourth 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 source3 the third source Publisher instance * @param source4 the fourth source Publisher instance * @return the new Flowable instance. */ @BackpressureSupport(BackpressureKind.UNBOUNDED_IN) @SchedulerSupport(SchedulerSupport.NONE) public static Flowable zipLatest(Publisher source1, Publisher source2, Publisher source3, Publisher source4, Function4 combiner) { return zipLatest(source1, source2, source3, source4, 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 value type of the third source Publisher * @param the value type of the fourth 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 source3 the third source Publisher instance * @param source4 the fourth 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, Publisher source3, Publisher source4, Function4 combiner, Scheduler scheduler) { ObjectHelper.requireNonNull(source1, "source1 is null"); ObjectHelper.requireNonNull(source2, "source2 is null"); ObjectHelper.requireNonNull(source3, "source3 is null"); ObjectHelper.requireNonNull(source4, "source4 is null"); ObjectHelper.requireNonNull(combiner, "combiner is null"); ObjectHelper.requireNonNull(scheduler, "scheduler is null"); return RxJavaPlugins.onAssembly(new FlowableZipLatest( new Publisher[] { source1, source2, source3, source4 }, null, Functions.toFunction(combiner), scheduler)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy