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

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

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