/**********************************************************\ | | | hprose | | | | Official WebSite: http://www.hprose.com/ | | http://www.hprose.org/ | | | \**********************************************************/ /**********************************************************\ * * * AsyncCall.java * * * * AsyncCall interface for Java. * * * * LastModified: Jul 3, 2016 * * Author: Ma Bingyao <andot@hprose.com> * * * \**********************************************************/ package hprose.util.concurrent; public interface AsyncCall<T> { Promise<T> call() throws Throwable; }