Example usage for com.google.common.collect AbstractIterator subclass-usage

List of usage examples for com.google.common.collect AbstractIterator subclass-usage

Introduction

In this page you can find the example usage for com.google.common.collect AbstractIterator subclass-usage.

Usage

From source file org.fcrepo.kernel.utils.iterators.GraphDifferencingIterator.java

/**
 * A wrapping {@link Iterator} that calculates two differences between a
 * {@link Graph} A and a source Iterator B. The differences are (A - (A  B)) and
 * (B - (A  B)). The ordinary output of this iterator is (B - (A  B)), and
 * after exhaustion, sets containing (A - (A  B)) and (A  B) are available.
 *

From source file org.fcrepo.kernel.api.utils.iterators.GraphDifferencingIterator.java

/**
 * A wrapping {@link Iterator} that calculates two differences between a
 * {@link Graph} A and a source Iterator B. The differences are (A - (A  B)) and
 * (B - (A  B)). The ordinary output of this iterator is (B - (A  B)), and
 * after exhaustion, sets containing (A - (A  B)) and (A  B) are available.
 *

From source file org.akubraproject.fs.FSBlobIdIterator.java

/**
 * Iterates over all files in baseDir (respecting filterPrefix if provided).
 *
 * @author Chris Wilper
 */
class FSBlobIdIterator extends AbstractIterator<URI> {

From source file com.spotify.docker.client.EventStream.java

public class EventStream extends AbstractIterator<Event> implements Closeable {

    private static final Logger log = LoggerFactory.getLogger(EventStream.class);

    private final EventReader reader;
    private volatile boolean closed;

From source file com.google.gcloud.datastore.QueryResultImpl.java

class QueryResultImpl<T> extends AbstractIterator<T> implements QueryResult<T> {

    private final DatastoreServiceImpl datastore;
    private final DatastoreV1.ReadOptions readOptionsPb;
    private final DatastoreV1.PartitionId partitionIdPb;
    private final Query.Type<T> queryType;

From source file org.dataconservancy.archive.impl.fcrepo.ri.RIQueryResult.java

public class RIQueryResult extends AbstractIterator<List<Value>> {

    private final BufferedReader reader;

    private final ValueFactory factory;

From source file org.apache.mahout.fpm.pfpgrowth.TransactionTreeIterator.java

/**
 * Generates a List of transactions view of Transaction Tree by doing Depth First Traversal on the tree
 * structure
 */
final class TransactionTreeIterator extends AbstractIterator<Pair<IntArrayList, Long>> {

From source file at.ac.univie.isc.asio.sql.ResultSetIterator.java

/**
 * Turns a ResultSet into an Iterator using a given {@link at.ac.univie.isc.asio.sql.ResultSetIterator.RowConverter} to process each row of the
 * ResultSet into an object.
 * 
 * @author Chris Borckholder
 * @param <T> type of converted rows

From source file com.cg.mapreduce.fpgrowth.mahout.fpm.TransactionTreeIterator.java

/**
 * Generates a List of transactions view of Transaction Tree by doing Depth First Traversal on the tree
 * structure
 */
@Deprecated
final class TransactionTreeIterator extends AbstractIterator<Pair<IntArrayList, Long>> {

From source file no.ssb.vtl.script.operations.join.CartesianIterator.java

/**
 * Iterates over Cartesian product of two Iterable.
 */
public class CartesianIterator<L, R, O> extends AbstractIterator<O> {

    private final Iterable<R> rightIterable;