Package xbird.engine.request

Examples of xbird.engine.request.GridQueryTaskRequest


    public void cancel(RequestContext rc) throws RemoteException {
    // TODO not supported yet
    }

    public void fire(RequestContext rc) throws RemoteException {
        GridQueryTaskRequest request = (GridQueryTaskRequest) rc.getRequest();
        final DispatchQueryExecTask task = request.getTask();

        final Serializable result;
        try {
            result = task.execute();
        } catch (GridException e) {
View Full Code Here

TOP

Related Classes of xbird.engine.request.GridQueryTaskRequest

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.