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

com.microsoft.kiota.TriConsumer Maven / Gradle / Ivy

The newest version!
package com.microsoft.kiota;

/** Represents a callback that accepts 3 values */
public interface TriConsumer {
    /**
     * Performs this operation on the given arguments.
     *
     * @param t the first input argument
     * @param u the second input argument
     * @param v the third input argument
     */
    void accept(T t, U u, V v);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy