com.gitee.l0km.aocache.ThrowingCallable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aocache Show documentation
Show all versions of aocache Show documentation
call/execution caching utility based on aspectj
package com.gitee.l0km.aocache;
interface ThrowingCallable {
/**
* Computes a result, or throws an exception if unable to do so.
*
* @return computed result
* @throws Exception if unable to compute a result
*/
V call() throws E;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy