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

com.oracle.bmc.hdfs.util.BiFunction Maven / Gradle / Ivy

/**
 * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
 */
package com.oracle.bmc.hdfs.util;

/**
 * Similar to Java8 BiFunction.
 *
 * @param 
 *            Type for first arg.
 * @param 
 *            Type for second arg.
 * @param 
 *            Type of output.
 */
public interface BiFunction {
    /**
     * Executes the function on the two given args.
     *
     * @param arg1
     *            The first arg.
     * @param arg2
     *            The second arg.
     * @return The result of executing the function.
     */
    OUTPUT apply(ARG1 arg1, ARG2 arg2);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy