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

org.infinispan.api.sync.SyncQueryResult Maven / Gradle / Ivy

The newest version!
package org.infinispan.api.sync;

import java.util.OptionalLong;

import org.infinispan.api.common.CloseableIterable;

/**
 * @since 14.0
 **/
public interface SyncQueryResult extends AutoCloseable {
   OptionalLong hitCount();

   CloseableIterable results();

   void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy