Uses of Interface
org.infinispan.query.dsl.Query
-
Packages that use Query Package Description org.infinispan.client.hotrod Hot Rod client API.org.infinispan.client.hotrod.event Hot Rod client remote event API.org.infinispan.client.hotrod.event.impl org.infinispan.client.hotrod.filter org.infinispan.client.hotrod.impl org.infinispan.client.hotrod.impl.query org.infinispan.query.api.continuous Continuous querying API.org.infinispan.query.dsl Query DSL API.org.infinispan.query.dsl.impl Query builder DSL implementation for Ickle (a JP-QL subset). -
-
Uses of Query in org.infinispan.client.hotrod
Methods in org.infinispan.client.hotrod with parameters of type Query Modifier and Type Method Description <E> org.reactivestreams.Publisher<Map.Entry<K,E>>RemoteCache. publishEntriesByQuery(Query<?> filterQuery, Set<Integer> segments, int batchSize)Publish entries from the server matching a query.CloseableIterator<Map.Entry<Object,Object>>RemoteCache. retrieveEntriesByQuery(Query<?> filterQuery, Set<Integer> segments, int batchSize)Retrieve entries from the server matching a query. -
Uses of Query in org.infinispan.client.hotrod.event
Methods in org.infinispan.client.hotrod.event with parameters of type Query Modifier and Type Method Description static voidClientEvents. addClientQueryListener(RemoteCache<?,?> remoteCache, Object listener, Query<?> query)Register a client listener that uses a query DSL based filter. -
Uses of Query in org.infinispan.client.hotrod.event.impl
Methods in org.infinispan.client.hotrod.event.impl with parameters of type Query Modifier and Type Method Description <C> voidContinuousQueryImpl. addContinuousQueryListener(Query<?> query, ContinuousQueryListener<K,C> listener)Registers a continuous query listener that uses a query DSL based filter. -
Uses of Query in org.infinispan.client.hotrod.filter
Methods in org.infinispan.client.hotrod.filter with parameters of type Query Modifier and Type Method Description static Object[]Filters. makeFactoryParams(Query<?> query) -
Uses of Query in org.infinispan.client.hotrod.impl
Methods in org.infinispan.client.hotrod.impl with parameters of type Query Modifier and Type Method Description <E> org.reactivestreams.Publisher<Map.Entry<K,E>>DelegatingRemoteCache. publishEntriesByQuery(Query<?> filterQuery, Set<Integer> segments, int batchSize)<E> org.reactivestreams.Publisher<Map.Entry<K,E>>RemoteCacheImpl. publishEntriesByQuery(Query<?> filterQuery, Set<Integer> segments, int batchSize)CloseableIterator<Map.Entry<Object,Object>>DelegatingRemoteCache. retrieveEntriesByQuery(Query<?> filterQuery, Set<Integer> segments, int batchSize)CloseableIterator<Map.Entry<Object,Object>>RemoteCacheImpl. retrieveEntriesByQuery(Query<?> filterQuery, Set<Integer> segments, int batchSize) -
Uses of Query in org.infinispan.client.hotrod.impl.query
Classes in org.infinispan.client.hotrod.impl.query that implement Query Modifier and Type Class Description classRemoteQuery<T>Methods in org.infinispan.client.hotrod.impl.query that return Query Modifier and Type Method Description <T> Query<T>RemoteQueryFactory. create(String queryString) -
Uses of Query in org.infinispan.query.api.continuous
Methods in org.infinispan.query.api.continuous with parameters of type Query Modifier and Type Method Description <C> voidContinuousQuery. addContinuousQueryListener(Query<?> query, ContinuousQueryListener<K,C> listener)Add a listener for a continuous query. -
Uses of Query in org.infinispan.query.dsl
Methods in org.infinispan.query.dsl that return Query Modifier and Type Method Description <T> Query<T>QueryBuilder. build()Deprecated.Builds the query object.<T> Query<T>QueryFactory. create(String queryString)Creates a Query based on an Ickle query string.Query<T>Query. hitCountAccuracy(int hitCountAccuracy)Limit the required accuracy of the hit count for the indexed queries to an upper-bound.Query<T>Query. local(boolean local)Set the query execution scopeQuery<T>Query. maxResults(int maxResults)Query<T>Query. setParameter(String paramName, Object paramValue)Sets the value of a named parameter.Query<T>Query. setParameters(Map<String,Object> paramValues)Sets multiple named parameters at once.Query<T>Query. startOffset(long startOffset)Query<T>Query. timeout(long timeout, TimeUnit timeUnit)Set the timeout for this query. -
Uses of Query in org.infinispan.query.dsl.impl
Classes in org.infinispan.query.dsl.impl that implement Query Modifier and Type Class Description classBaseQuery<T>Methods in org.infinispan.query.dsl.impl that return Query Modifier and Type Method Description Query<T>BaseQuery. hitCountAccuracy(int hitCountAccuracy)Query<T>BaseQuery. local(boolean local)Query<T>BaseQuery. maxResults(int maxResults)Query<T>BaseQuery. setParameter(String paramName, Object paramValue)Query<T>BaseQuery. setParameters(Map<String,Object> paramValues)Query<T>BaseQuery. startOffset(long startOffset)Query<T>BaseQuery. timeout(long timeout, TimeUnit timeUnit)
-