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

arez.Procedure Maven / Gradle / Ivy

There is a newer version: 0.213
Show newest version
package arez;

/**
 * Interface for performing an action that does not return a value.
 */
@FunctionalInterface
public interface Procedure
{
  /**
   * Perform an action, or throw an exception if unable to do so.
   *
   * @throws Throwable if unable to perform action.
   */
  void call()
    throws Throwable;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy