Package com.droidkit.actors.tasks

Examples of com.droidkit.actors.tasks.AskFuture


     * @param callback asks callback
     * @param futures  futures from ask
     * @return future
     */
    public AskFuture combine(AskCallback<Object[]> callback, AskFuture... futures) {
        AskFuture future = combine(futures);
        future.addListener(callback);
        return future;
    }
View Full Code Here

TOP

Related Classes of com.droidkit.actors.tasks.AskFuture

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.