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

org.infinispan.CacheCollection Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy