com.bluecatcode.common.functions.CheckedEffect Maven / Gradle / Ivy
package com.bluecatcode.common.functions;
/**
* @see Block
* @see Consumer
* @see Function
* @see com.google.common.base.Predicate
* @see com.google.common.base.Supplier
* @see java.util.concurrent.Callable
*/
public interface CheckedEffect {
/**
* Performs this operation for side effect.
*
* @throws E if unable to compute
*/
void cause() throws E;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy