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

com.codepoetics.fluvius.api.functional.TripleParameterStep Maven / Gradle / Ivy

package com.codepoetics.fluvius.api.functional;

import java.io.Serializable;

/**
 * A function taking three arguments.
 *
 * @param       The type of the function's first argument.
 * @param       The type of the function's second argument.
 * @param       The type of the function's third argument.
 * @param  The type of the function's result.
 */
public interface TripleParameterStep extends Serializable {
  /**
   * Apply this function to the supplied inputs.
   *
   * @param first  The first input to the function.
   * @param second The second input to the function.
   * @param third  The third input to the function.
   * @return The output of the function.
   * @throws Exception Any exception thrown during the execution of the function.
   */
  OUTPUT apply(A first, B second, C third) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy