react4j.core.Procedure Maven / Gradle / Ivy
package react4j.core;
import jsinterop.annotations.JsFunction;
/**
* Interface for performing an action that does not return a value.
*/
@FunctionalInterface
@JsFunction
public interface Procedure
{
/**
* Perform an action.
*/
void call();
}