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

com.github.oxo42.stateless4j.delegates.Action2 Maven / Gradle / Ivy

The newest version!
package com.github.oxo42.stateless4j.delegates;

/**
 * Represents an operation that accepts an input and returns no result
 *
 * @param   The type of the input
 * @param  The type of the input
 */
public interface Action2 {

    /**
     * Performs this operation on the given input
     *
     * @param arg1 Input argument
     * @param arg2 Input argument
     */
    void doIt(T arg1, T1 arg2);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy