arez.SafeProcedure Maven / Gradle / Ivy
package arez;
/**
* Interface for performing an action that does not return a value.
*/
@FunctionalInterface
public interface SafeProcedure
{
/**
* Perform an action.
*/
void call();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy