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

me.hltj.vertx.future.CompositeFutureTuple8 Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
/*
 * vertx-future-utils - Convenient Utilities for Vert.x Future
 * https://github.com/hltj/vertx-future-utils
 *
 * Copyright (C) 2020  JiaYanwei  https://hltj.me
 *
 * This code is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This code is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see .
 *
 * Please contact me (jiaywe#at#gmail.com, replace the '#at#' with 'at')
 * if you need additional information or have any questions.
 */
package me.hltj.vertx.future;

import io.vertx.core.CompositeFuture;
import io.vertx.core.Future;
import lombok.ToString;
import me.hltj.vertx.function.*;

import java.util.function.BiFunction;
import java.util.function.Consumer;
import java.util.function.Supplier;

import static me.hltj.vertx.FutureUtils.joinWrap;

/**
 * The composite {@link Future} tuple warps a {@link CompositeFuture} and a {@link FutureTuple8}.
 * 

* Not only retains the type parameters of the original {@code Future}s, * but also provide many convenient operations as a complement to {@code CompositeFuture}. * * @param the type parameter of the 1st {@code Future} * @param the type parameter of the 2nd {@code Future} * @param the type parameter of the 3rd {@code Future} * @param the type parameter of the 4th {@code Future} * @param the type parameter of the 5th {@code Future} * @param the type parameter of the 6th {@code Future} * @param the type parameter of the 7th {@code Future} * @param the type parameter of the 8th {@code Future} */ @ToString(includeFieldNames = false) final public class CompositeFutureTuple8 extends CompositeFutureWrapper { private final FutureTuple8 tuple8; private CompositeFutureTuple8(CompositeFuture composite, FutureTuple8 tuple8) { super(composite); this.tuple8 = tuple8; } /** * Create a {@link CompositeFutureTuple8} based on a {@link CompositeFuture} and a {@link FutureTuple8}. * * @param the type parameter of the 1st {@code Future} * @param the type parameter of the 2nd {@code Future} * @param the type parameter of the 3rd {@code Future} * @param the type parameter of the 4th {@code Future} * @param the type parameter of the 5th {@code Future} * @param the type parameter of the 6th {@code Future} * @param the type parameter of the 7th {@code Future} * @param the type parameter of the 8th {@code Future} * @param tuple8 the {@code FutureTuple8} * @param compose the {@code CompositeFuture} * @return the {@code CompositeFutureTuple8} */ public static CompositeFutureTuple8 of( FutureTuple8 tuple8, CompositeFuture compose ) { return new CompositeFutureTuple8<>(compose, tuple8); } /** * Return the original {@link FutureTuple8}. */ public FutureTuple8 tuple() { return tuple8; } /** * Run side-effect code likes {@link CompositeFutureWrapper#use(Consumer)}, but the {@code consumer9} takes the * original 8 {@link Future}s as additional parameters. *

* It likes {@link CompositeFutureTuple2#use(Consumer3)} but with 8-arity. */ public void use( Consumer9, Future, Future, Future, Future, Future, Future, Future> consumer9 ) { consumer9.accept( composite, tuple8.get_0(), tuple8.get_1(), tuple8.get_2(), tuple8.get_3(), tuple8.get_4(), tuple8.get_5(), tuple8.get_6(), tuple8.get_7() ); } /** * Map the original {@link CompositeFuture} and the original 8 {@link Future}s. *

* It likes {@link CompositeFutureTuple2#with(Function3)} but with 8-arity. */ public R with( Function9, Future, Future, Future, Future, Future, Future, Future, R> function8 ) { return function8.apply( composite, tuple8.get_0(), tuple8.get_1(), tuple8.get_2(), tuple8.get_3(), tuple8.get_4(), tuple8.get_5(), tuple8.get_6(), tuple8.get_7() ); } /** * Alias for {@link #through(Function8)}. */ public Future mapAnyway( Function8, Future, Future, Future, Future, Future, Future, Future, R> function8 ) { return through(function8); } /** * Map a function that takes the original 8 {@link Future}s on complete no matter whether succeeded or failed. *

* It likes {@link CompositeFutureTuple2#through(BiFunction)} but with 8-arity. */ public Future through( Function8, Future, Future, Future, Future, Future, Future, Future, R> function8 ) { return joinThrough(function8.andThen(Future::succeededFuture)); } /** * Alias for {@link #joinThrough(Function8)}. */ public Future flatMapAnyway( Function8, Future, Future, Future, Future, Future, Future, Future, Future> function8 ) { return joinThrough(function8); } /** * Map a function that takes the original 8 {@link Future}s on complete no matter whether succeeded or failed, * and join (also known as {@code flatten}) the result before return. * *

* It likes {@link CompositeFutureTuple2#joinThrough(BiFunction)} but with 8-arity. */ public Future joinThrough( Function8, Future, Future, Future, Future, Future, Future, Future, Future> function8 ) { Supplier> supplier = () -> function8.apply( tuple8.get_0(), tuple8.get_1(), tuple8.get_2(), tuple8.get_3(), tuple8.get_4(), tuple8.get_5(), tuple8.get_6(), tuple8.get_7() ); return composite.compose(_x -> joinWrap(supplier), _t -> joinWrap(supplier)); } /** * Alias for {@link CompositeFutureTuple8#applift(Function8)}. */ public Future mapTyped(Function8 function8) { return applift(function8); } /** * Apply a function that accept all results of the original {@link Future}s on success, and return * a {@link Future}. *

* It likes {@link CompositeFutureTuple2#applift(BiFunction)} but with 8-arity. */ public Future applift(Function8 function8) { return composite.map(future -> function8.apply( composite.resultAt(0), composite.resultAt(1), composite.resultAt(2), composite.resultAt(3), composite.resultAt(4), composite.resultAt(5), composite.resultAt(6), composite.resultAt(7) )); } /** * Alias for {@link CompositeFutureTuple8#joinApplift(Function8)}. */ public Future flatMapTyped(Function8> function8) { return joinApplift(function8); } /** * Apply a function that accept all results of the original {@link Future}s on success, and return * a {@link Future}, where the function itself return a {@link Future}. *

* It likes {@link CompositeFutureTuple2#joinApplift(BiFunction)} but with 8-arity. */ public Future joinApplift(Function8> function8) { return composite.flatMap(future -> function8.apply( composite.resultAt(0), composite.resultAt(1), composite.resultAt(2), composite.resultAt(3), composite.resultAt(4), composite.resultAt(5), composite.resultAt(6), composite.resultAt(7) )); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy