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

codes.vps.logging.fluentd.jdk.util.ConsumerT Maven / Gradle / Ivy

package codes.vps.logging.fluentd.jdk.util;

@FunctionalInterface
public interface ConsumerT {

    /**
     * Performs this operation on the given argument.
     *
     * @param t the first input argument
     * @throws E implementation can throw any exception
     */
    void accept(T t) throws E;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy