Back to project page SIC.
The source code is released under:
MIT License
If you think the Android project SIC listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sun.imageloader.memorizer.api; /*from w w w.j a va 2 s .c o m*/ import java.util.concurrent.ExecutionException; public interface IMemorizer<T, V> { /** * Returns the value after a computation * * @param computable_ the value to be process * @return a computed result * @throws ExecutionException * @throws InterruptedException */ public V executeComputable(T computable_) throws InterruptedImageLoadException, ExecutionException; }