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

hu.akarnokd.rxjava3.parallel.ParallelTransformers Maven / Gradle / Ivy

Go to download

RxJava 3.x extra sources, operators and components and ports of many 1.x companion libraries.

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

import java.util.Comparator;

import io.reactivex.rxjava3.core.Flowable;
import io.reactivex.rxjava3.internal.functions.*;
import io.reactivex.rxjava3.parallel.*;
import io.reactivex.rxjava3.plugins.RxJavaPlugins;

/**
 * Transformers for RxJava 2 ParallelFlowable sequences.
 * @since 0.16.3
 */
public final class ParallelTransformers {

    private ParallelTransformers() {
        throw new IllegalStateException("No instances!");
    }

    /**
     * Merges the source ParallelFlowable rails 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 source the source ParallelFlowable
     * @return the new Flowable instance
     * @since 0.17.9
     */
    public static > Flowable orderedMerge(ParallelFlowable source) {
        return orderedMerge(source, Functions.naturalOrder(), false, Flowable.bufferSize());
    }

    /**
     * Merges the source ParallelFlowable rails 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 source the source ParallelFlowable
     * @param delayErrors if true, source errors are delayed until all sources terminate in some way
     * @return the new Flowable instance
     * @since 0.17.9
     */
    public static > Flowable orderedMerge(ParallelFlowable source, boolean delayErrors) {
        return orderedMerge(source, Functions.naturalOrder(), delayErrors, Flowable.bufferSize());
    }

    /**
     * Merges the source ParallelFlowable rails 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 source the source ParallelFlowable
     * @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.17.9
     */
    public static > Flowable orderedMerge(ParallelFlowable source, boolean delayErrors, int prefetch) {
        return orderedMerge(source, Functions.naturalOrder(), delayErrors, prefetch);
    }

    /**
     * Merges the source ParallelFlowable rails 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 source the source ParallelFlowable
     * @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.17.9
     */
    public static  Flowable orderedMerge(ParallelFlowable source, Comparator comparator) {
        return orderedMerge(source, comparator, false, Flowable.bufferSize());
    }

    /**
     * Merges the source ParallelFlowable rails 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 source the source ParallelFlowable
     * @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.17.9
     */
    public static  Flowable orderedMerge(ParallelFlowable source, Comparator comparator, boolean delayErrors) {
        return orderedMerge(source, comparator, delayErrors, Flowable.bufferSize());
    }

    /**
     * Merges the source ParallelFlowable rails 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 source the source ParallelFlowable
     * @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.17.9
     */
    public static  Flowable orderedMerge(ParallelFlowable source, Comparator comparator, boolean delayErrors, int prefetch) {
        ObjectHelper.requireNonNull(comparator, "comparator is null");
        ObjectHelper.requireNonNull(source, "sources is null");
        ObjectHelper.verifyPositive(prefetch, "prefetch");
        return RxJavaPlugins.onAssembly(new ParallelOrderedMerge(source, comparator, delayErrors, prefetch));
    }

    /**
     * Sums the numbers as integers on each rail.
     * @param  the numerical type of the input values
     * @return the new ParallelTransformer type
     * @since 0.16.3
     */
    public static  ParallelTransformer sumInteger() {
        return new ParallelSumInteger(null);
    }

    /**
     * Sums the numbers as longs on each rail.
     * @param  the numerical type of the input values
     * @return the new ParallelTransformer type
     * @since 0.16.3
     */
    public static  ParallelTransformer sumLong() {
        return new ParallelSumLong(null);
    }

    /**
     * Sums the numbers as longs on each rail.
     * @param  the numerical type of the input values
     * @return the new ParallelTransformer type
     * @since 0.16.3
     */
    public static  ParallelTransformer sumDouble() {
        return new ParallelSumDouble(null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy