Package org.apache.ignite.cache.query
Class SpiQuery<K,V>
- java.lang.Object
- 
- org.apache.ignite.cache.query.Query<javax.cache.Cache.Entry<K,V>>
- 
- org.apache.ignite.cache.query.SpiQuery<K,V>
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 @Deprecated public final class SpiQuery<K,V> extends Query<javax.cache.Cache.Entry<K,V>> Deprecated.Query to be used byIndexingSpiimplementations.- See Also:
- IgniteCache.query(Query),- ScanQuery,- SqlFieldsQuery,- IndexQuery, Serialized Form
 
- 
- 
Field Summary- 
Fields inherited from class org.apache.ignite.cache.query.QueryDFLT_PAGE_SIZE
 
- 
 - 
Constructor SummaryConstructors Constructor Description SpiQuery()Deprecated.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Object[]getArgs()Deprecated.Gets SQL arguments.SpiQuery<K,V>setArgs(Object... args)Deprecated.Sets SQL arguments.SpiQuery<K,V>setLocal(boolean loc)Deprecated.Sets whether this query should be executed on local node only.SpiQuery<K,V>setPageSize(int pageSize)Deprecated.Sets optional page size, if0, then default is used.StringtoString()Deprecated.- 
Methods inherited from class org.apache.ignite.cache.query.QuerygetPageSize, isLocal, prepare
 
- 
 
- 
- 
- 
Method Detail- 
getArgspublic Object[] getArgs() Deprecated.Gets SQL arguments.- Returns:
- SQL arguments.
 
 - 
setArgspublic SpiQuery<K,V> setArgs(Object... args) Deprecated.Sets SQL arguments.- Parameters:
- args- SQL arguments.
- Returns:
- thisFor chaining.
 
 - 
setPageSizepublic SpiQuery<K,V> setPageSize(int pageSize) Deprecated.Sets optional page size, if0, then default is used.- Overrides:
- setPageSizein class- Query<javax.cache.Cache.Entry<K,V>>
- Parameters:
- pageSize- Optional page size.
- Returns:
- thisfor chaining.
 
 - 
setLocalpublic SpiQuery<K,V> setLocal(boolean loc) Deprecated.Sets whether this query should be executed on local node only.
 
- 
 
-