Package xbird.xquery.ext.grid

Examples of xbird.xquery.ext.grid.DispatchQueryExecTask


    // 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) {
            LOG.error(e.getMessage(), e);
            rc.setFault(e);
            _resHandler.onResponse(rc);
            return;
View Full Code Here

TOP

Related Classes of xbird.xquery.ext.grid.DispatchQueryExecTask

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.