me.hltj.vertx.future.CompositeFutureTuple7 Maven / Gradle / Ivy
Show all versions of vertx-future-utils Show documentation
/*
* 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 FutureTuple7}.
*
* 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}
*/
@ToString(includeFieldNames = false)
final public class CompositeFutureTuple7 extends CompositeFutureWrapper {
private final FutureTuple7 tuple7;
private CompositeFutureTuple7(CompositeFuture composite, FutureTuple7 tuple7) {
super(composite);
this.tuple7 = tuple7;
}
/**
* Create a {@link CompositeFutureTuple7} based on a {@link CompositeFuture} and a {@link FutureTuple7}.
*
* @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 tuple7 the {@code FutureTuple7}
* @param compose the {@code CompositeFuture}
* @return the {@code CompositeFutureTuple7}
*/
public static CompositeFutureTuple7 of(
FutureTuple7 tuple7, CompositeFuture compose
) {
return new CompositeFutureTuple7<>(compose, tuple7);
}
/**
* Return the original {@link FutureTuple7}.
*/
public FutureTuple7 tuple() {
return tuple7;
}
/**
* Run side-effect code likes {@link CompositeFutureWrapper#use(Consumer)}, but the {@code consumer8} takes the
* original 7 {@link Future}s as additional parameters.
*
* It likes {@link CompositeFutureTuple2#use(Consumer3)} but with 7-arity.
*/
public void use(
Consumer8, Future, Future, Future, Future, Future,
Future> consumer8
) {
consumer8.accept(
composite, tuple7.get_0(), tuple7.get_1(), tuple7.get_2(), tuple7.get_3(), tuple7.get_4(),
tuple7.get_5(), tuple7.get_6()
);
}
/**
* Map the original {@link CompositeFuture} and the original 7 {@link Future}s.
*
* It likes {@link CompositeFutureTuple2#with(Function3)} but with 7-arity.
*/
public R with(
Function8, Future, Future, Future, Future, Future,
Future, R> function7
) {
return function7.apply(
composite, tuple7.get_0(), tuple7.get_1(), tuple7.get_2(), tuple7.get_3(), tuple7.get_4(),
tuple7.get_5(), tuple7.get_6()
);
}
/**
* Alias for {@link #through(Function7)}.
*/
public Future mapAnyway(
Function7, Future, Future, Future, Future, Future, Future, R> function7
) {
return through(function7);
}
/**
* Map a function that takes the original 7 {@link Future}s on complete no matter whether succeeded or failed.
*
* It likes {@link CompositeFutureTuple2#through(BiFunction)} but with 7-arity.
*/
public Future through(
Function7, Future, Future, Future, Future, Future, Future, R> function7
) {
return joinThrough(function7.andThen(Future::succeededFuture));
}
/**
* Alias for {@link #joinThrough(Function7)}.
*/
public Future flatMapAnyway(
Function7, Future, Future, Future, Future, Future, Future,
Future> function7
) {
return joinThrough(function7);
}
/**
* Map a function that takes the original 7 {@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 7-arity.
*/
public Future joinThrough(
Function7, Future, Future, Future, Future, Future, Future,
Future> function7
) {
Supplier> supplier = () -> function7.apply(
tuple7.get_0(), tuple7.get_1(), tuple7.get_2(), tuple7.get_3(), tuple7.get_4(), tuple7.get_5(),
tuple7.get_6()
);
return composite.compose(_x -> joinWrap(supplier), _t -> joinWrap(supplier));
}
/**
* Alias for {@link CompositeFutureTuple7#applift(Function7)}.
*/
public Future mapTyped(Function7 function7) {
return applift(function7);
}
/**
* 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 7-arity.
*/
public Future applift(Function7 function7) {
return composite.map(future -> function7.apply(
composite.resultAt(0), composite.resultAt(1), composite.resultAt(2), composite.resultAt(3),
composite.resultAt(4), composite.resultAt(5), composite.resultAt(6)
));
}
/**
* Alias for {@link CompositeFutureTuple7#joinApplift(Function7)}.
*/
public Future flatMapTyped(Function7> function7) {
return joinApplift(function7);
}
/**
* 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 7-arity.
*/
public Future joinApplift(Function7> function7) {
return composite.flatMap(future -> function7.apply(
composite.resultAt(0), composite.resultAt(1), composite.resultAt(2), composite.resultAt(3),
composite.resultAt(4), composite.resultAt(5), composite.resultAt(6)
));
}
}