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

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 - 2024 Weber Informatics LLC | Privacy Policy