me.hltj.vertx.function.Function3 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.function;
import java.util.Objects;
import java.util.function.Function;
/**
* Represents a function that accepts 3 arguments and produces a result.
* This is the 3-arity specialization of {@link Function}.
*
* This is a functional interface
* whose functional method is {@link #apply(Object, Object, Object)}.
*
* @param the type of the 1st argument to the function
* @param the type of the 2nd argument to the function
* @param the type of the 3rd argument to the function
* @param the type of the result of the function
* @see Function
*/
@FunctionalInterface
public interface Function3 {
/**
* Applies this function to the given arguments.
*
* @param v0 the 1st function argument
* @param v1 the 2nd function argument
* @param v2 the 3rd function argument
* @return the function result
*/
R apply(T0 v0, T1 v1, T2 v2);
/**
* Returns a composed function that first applies this function to
* its input, and then applies the {@code after} function to the result.
* If evaluation of either function throws an exception, it is relayed to
* the caller of the composed function.
*
* @param the type of output of the {@code after} function, and of the
* composed function
* @param after the function to apply after this function is applied
* @return a composed function that first applies this function and then
* applies the {@code after} function
* @throws NullPointerException if after is null
*/
default Function3 andThen(Function super R, ? extends R1> after) {
Objects.requireNonNull(after);
return (T0 v0, T1 v1, T2 v2) -> after.apply(apply(v0, v1, v2));
}
}