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.objectfilter Querying on plain Java objects.org.infinispan.query Query API that lets you perform Ickle queries and look up values in caches.org.infinispan.query.api.continuous Continuous querying API.org.infinispan.query.dsl Query DSL API. -
-
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 void
ClientEvents. addClientQueryListener(RemoteCache<?,?> remoteCache, Object listener, Query<?> query)
Register a client listener that uses a query DSL based filter. -
Uses of Query in org.infinispan.objectfilter
Methods in org.infinispan.objectfilter with parameters of type Query Modifier and Type Method Description ObjectFilter
Matcher. getObjectFilter(Query<?> query)
FilterSubscription
Matcher. registerFilter(Query<?> query, FilterCallback callback, boolean isDeltaFilter, Object... eventType)
FilterSubscription
Matcher. registerFilter(Query<?> query, FilterCallback callback, Object... eventType)
-
Uses of Query in org.infinispan.query
Methods in org.infinispan.query with parameters of type Query Modifier and Type Method Description static <K,V>
CacheEventFilterConverter<K,V,ObjectFilter.FilterResult>Search. makeFilter(Query<?> query)
Creates event filters from Ickle query strings. -
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> void
ContinuousQuery. 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. 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.
-