io.servicefabric.transport.utils.memoization.Computable Maven / Gradle / Ivy
package io.servicefabric.transport.utils.memoization;
/**
* The Interface Computable.
*
* @param the generic type
* @param the value type
*/
public interface Computable {
/**
* Compute.
*
* @param arg the arg
* @return the v
* @throws Exception the exception
*/
V compute(A arg) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy