Package io.crate.core.collections

Examples of io.crate.core.collections.ArrayIterator


    public Iterator<Object[]> iterator() throws IllegalStateException {
        if (!result.isDone()) {
            throw new IllegalStateException("result not ready.");
        }
        try {
            return new ArrayIterator(result.get(), 0, result.get().length);
        } catch (InterruptedException | ExecutionException e) {
            throw new IllegalStateException(e);
        }
    }
View Full Code Here

TOP

Related Classes of io.crate.core.collections.ArrayIterator

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.