Package groovyx.gaelyk.query

Examples of groovyx.gaelyk.query.QueryBuilder.iterate()


     *            the Closure<?> representing the query to execute
     * @return the iterator over the results
     */
    public static Object iterate(DatastoreService service, @DelegatesTo(value = QueryBuilder.class, strategy = Closure.DELEGATE_FIRST) Closure<?> c) {
        QueryBuilder builder = build(service, c);
        return builder.iterate();
    }

    /**
     * Adds an <code>unindexed</code> property to entities to wrap entities,
     * so as to set unindexed properties on the entity.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.