org.infinispan.CacheCollection Maven / Gradle / Ivy
package org.infinispan;
import org.infinispan.commons.util.CloseableIteratorCollection;
/**
* A collection type that returns special Cache based streams that have additional options to tweak behavior.
* @param The type of the collection
* @since 8.0
*/
public interface CacheCollection extends CloseableIteratorCollection {
@Override
CacheStream stream();
@Override
CacheStream parallelStream();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy