All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bazaarvoice.emodb.common.json.StreamingIteratorSupplier Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
package com.bazaarvoice.emodb.common.json;

import java.util.Iterator;

/**
 * Helper for {@link RestartingStreamingIterator} that supplies the underlying streaming iterators.
 */
public interface StreamingIteratorSupplier {
    Iterator get(K fromToken, long limit);

    K getNextToken(T object);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy