org.infinispan.client.hotrod.Search Maven / Gradle / Ivy
package org.infinispan.client.hotrod;
import org.infinispan.client.hotrod.event.ContinuousQueryImpl;
import org.infinispan.client.hotrod.impl.RemoteCacheImpl;
import org.infinispan.client.hotrod.impl.query.RemoteQueryFactory;
import org.infinispan.query.api.continuous.ContinuousQuery;
import org.infinispan.query.dsl.QueryFactory;
/**
* @author [email protected]
* @since 6.0
*/
public final class Search {
private Search() {
}
public static QueryFactory getQueryFactory(RemoteCache, ?> cache) {
if (cache == null) {
throw new IllegalArgumentException("cache parameter cannot be null");
}
return new RemoteQueryFactory((RemoteCacheImpl) cache);
}
public static ContinuousQuery getContinuousQuery(RemoteCache cache) {
return new ContinuousQueryImpl(cache);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy