Uses of Class
org.apache.ignite.cache.query.Query
-
Packages that use Query Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs.org.apache.ignite.cache.query Contains APIs for creating and executing cache queries.org.apache.ignite.client Contains Ignite Thin Client API classes.org.apache.ignite.internal.client.thin org.apache.ignite.internal.processors.cache This package contain cache-related processors & persistence implementation.org.apache.ignite.internal.processors.cache.query org.apache.ignite.internal.processors.platform.cache.query -
-
Uses of Query in org.apache.ignite
Methods in org.apache.ignite with parameters of type Query Modifier and Type Method Description <R> QueryCursor<R>IgniteCache. query(Query<R> qry)Queries cache.<T,R>
QueryCursor<R>IgniteCache. query(Query<T> qry, IgniteClosure<T,R> transformer)Queries the cache transforming the entries on the server nodes. -
Uses of Query in org.apache.ignite.cache.query
Subclasses of Query in org.apache.ignite.cache.query Modifier and Type Class Description classAbstractContinuousQuery<K,V>Base class for continuous query.classContinuousQuery<K,V>API for configuring continuous cache queries.classContinuousQueryWithTransformer<K,V,T>API for configuring continuous cache queries with transformer.classIndexQuery<K,V>Index queries work over distributed indexes and retrieve cache entries that match the specified criteria.classScanQuery<K,V>Scan query over cache entries.classSpiQuery<K,V>Deprecated.classSqlFieldsQuerySQL Fields query.classSqlQuery<K,V>Deprecated.Since 2.8, please useSqlFieldsQueryinstead.classTextQuery<K,V>Full Text QueriesMethods in org.apache.ignite.cache.query that return Query Modifier and Type Method Description Query<javax.cache.Cache.Entry<K,V>>AbstractContinuousQuery. getInitialQuery()Gets initial query.Query<R>Query. setLocal(boolean loc)Sets whether this query should be executed on local node only.Query<R>Query. setPageSize(int pageSize)Sets optional page size, if0, then default is used.Methods in org.apache.ignite.cache.query with parameters of type Query Modifier and Type Method Description AbstractContinuousQuery<K,V>AbstractContinuousQuery. setInitialQuery(Query<javax.cache.Cache.Entry<K,V>> initQry)Sets initial query.ContinuousQuery<K,V>ContinuousQuery. setInitialQuery(Query<javax.cache.Cache.Entry<K,V>> initQry)Sets initial query.ContinuousQueryWithTransformer<K,V,T>ContinuousQueryWithTransformer. setInitialQuery(Query<javax.cache.Cache.Entry<K,V>> initQry)Sets initial query. -
Uses of Query in org.apache.ignite.client
Methods in org.apache.ignite.client with parameters of type Query Modifier and Type Method Description <R> QueryCursor<R>ClientCache. query(Query<R> qry)Queries cache. -
Uses of Query in org.apache.ignite.internal.client.thin
Methods in org.apache.ignite.internal.client.thin with parameters of type Query Modifier and Type Method Description <R> QueryCursor<R>TcpClientCache. query(Query<R> qry)Queries cache. -
Uses of Query in org.apache.ignite.internal.processors.cache
Methods in org.apache.ignite.internal.processors.cache with parameters of type Query Modifier and Type Method Description <R> QueryCursor<R>GatewayProtectedCacheProxy. query(Query<R> qry)Queries cache.<T,R>
QueryCursor<R>GatewayProtectedCacheProxy. query(Query<T> qry, IgniteClosure<T,R> transformer)Queries the cache transforming the entries on the server nodes.<R> QueryCursor<R>IgniteCacheProxyImpl. query(Query<R> qry)Queries cache.<T,R>
QueryCursor<R>IgniteCacheProxyImpl. query(Query<T> qry, IgniteClosure<T,R> transformer)Queries the cache transforming the entries on the server nodes. -
Uses of Query in org.apache.ignite.internal.processors.cache.query
Subclasses of Query in org.apache.ignite.internal.processors.cache.query Modifier and Type Class Description classSqlFieldsQueryExSqlFieldsQuerywith experimental and internal features. -
Uses of Query in org.apache.ignite.internal.processors.platform.cache.query
Methods in org.apache.ignite.internal.processors.platform.cache.query with parameters of type Query Modifier and Type Method Description voidPlatformContinuousQuery. start(IgniteCacheProxy cache, boolean loc, int bufSize, long timeInterval, boolean autoUnsubscribe, Query initialQry, boolean includeExpired)Start continuous query execution.voidPlatformContinuousQueryImpl. start(IgniteCacheProxy cache, boolean loc, int bufSize, long timeInterval, boolean autoUnsubscribe, Query initialQry, boolean includeExpired)Start query execution.
-