com.dooapp.gaedo.blueprints.queries.executable.LazyLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gaedo-blueprints Show documentation
Show all versions of gaedo-blueprints Show documentation
Implementation of gaedo mechanisms backed by blueprints graph layer
package com.dooapp.gaedo.blueprints.queries.executable;
import java.util.Collection;
import com.tinkerpop.blueprints.Vertex;
/**
* Interface allowing one to obtain count of vertices without having to load them. This is specially convenient for queries involving indices.
* @author ndx
*
*/
public interface LazyLoader {
/**
* Obtain list of vertices for this lazy loader
* @return
*/
Iterable get();
/**
* Obtain number of vertices this lazy loader will load
* @return
*/
long size();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy