Package org.gwtnode.core.node

Examples of org.gwtnode.core.node.NodeJsError


public abstract class FutureCallback<T> extends JavaScriptFunctionWrapper {

    @Override
    @SuppressWarnings("unchecked")
    public final void call(JavaScriptFunctionArguments args) {
        NodeJsError error = args.get(0);
        T value = null;
        if (args.length() > 1) {
            value = (T) args.get(1);
        }
        onCallback(error, value);
View Full Code Here

TOP

Related Classes of org.gwtnode.core.node.NodeJsError

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.