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.concurrent; // ww w .j a v a 2s. c o m import java.util.concurrent.Callable; import com.sun.imageloader.computable.impl.Computable; public class ComputableCallable<T,V> implements Callable<V> { private Computable<T, V> _computable; private T _key; public ComputableCallable(Computable<T, V> computable_, T key_){ _computable = computable_; _key = key_; } @Override public V call() throws Exception { return _computable.compute(_key); } }