![JAR search and dependency download from the Maven repository](/logo.png)
com.github.oxo42.stateless4j.delegates.Action2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stateless4j Show documentation
Show all versions of stateless4j Show documentation
A fluent interface for state machines
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