Package gridool

Examples of gridool.Grid


        return this;
    }

    public Sequence<? extends Item> eval(Sequence<? extends Item> contextSeq, DynamicContext dynEnv)
            throws XQueryException {
        final Grid grid = connectToGrid(true);
        final Sequence<? extends Item> result;
        try {
            result = grid.execute(MapQueryJob.class, this);
        } catch (RemoteException e) {
            throw new XQueryException(e.getMessage(), e);
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of gridool.Grid

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.