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

com.bluecatcode.common.functions.CheckedBlock Maven / Gradle / Ivy

The newest version!
package com.bluecatcode.common.functions;

import javax.annotation.Nullable;

/**
 * @param  the result type
 * @see Consumer
 * @see Effect
 * @see Function
 * @see com.google.common.base.Predicate
 * @see com.google.common.base.Supplier
 * @see java.util.concurrent.Callable
 */
public interface CheckedBlock {

    /**
     * Performs this operation returning value.
     *
     * @throws E if unable to compute
     */
    @Nullable
    T execute() throws E;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy