| Package | Description |
|---|---|
| org.gridgain.grid.cache.query |
Contains APIs for creating and executing cache queries.
|
| org.gridgain.grid.kernal.processors.cache.query | |
| org.gridgain.grid.kernal.visor.cmd.tasks |
| Modifier and Type | Method and Description |
|---|---|
<R> GridCacheQueryFuture<R> |
GridCacheQuery.execute(GridClosure<T,R> rmtTransform,
Object... args)
Executes the query the same way as
GridCacheQuery.execute(Object...) method but transforms result remotely. |
<R> GridCacheQueryFuture<R> |
GridCacheQuery.execute(GridReducer<T,R> rmtReducer,
Object... args)
Executes the query the same way as
GridCacheQuery.execute(Object...) method but reduces result remotely. |
GridCacheQueryFuture<T> |
GridCacheQuery.execute(Object... args)
Executes the query and returns the query future.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GridCacheDistributedFieldsQueryFuture
Distributed fields query future.
|
class |
GridCacheDistributedQueryFuture<K,V,R>
Distributed query future.
|
class |
GridCacheFieldsQueryErrorFuture
Error future for fields query.
|
class |
GridCacheLocalFieldsQueryFuture
Local fields query future.
|
class |
GridCacheLocalQueryFuture<K,V,R>
Local query future.
|
class |
GridCacheQueryErrorFuture<T>
Error future.
|
class |
GridCacheQueryFutureAdapter<K,V,R>
Query future adapter.
|
| Modifier and Type | Method and Description |
|---|---|
<R> GridCacheQueryFuture<R> |
GridCacheQueryAdapter.execute(GridClosure<T,R> rmtTransform,
Object... args)
Executes the query the same way as
GridCacheQuery.execute(Object...) method but transforms result remotely. |
<R> GridCacheQueryFuture<R> |
GridCacheQueryAdapter.execute(GridReducer<T,R> rmtReducer,
Object... args)
Executes the query the same way as
GridCacheQuery.execute(Object...) method but reduces result remotely. |
GridCacheQueryFuture<T> |
GridCacheQueryAdapter.execute(Object... args)
Executes the query and returns the query future.
|
abstract GridCacheQueryFuture<?> |
GridCacheQueryManager.queryDistributed(GridCacheQueryBean qry,
Collection<GridNode> nodes)
Executes distributed query.
|
GridCacheQueryFuture<?> |
GridCacheDistributedQueryManager.queryDistributed(GridCacheQueryBean qry,
Collection<GridNode> nodes)
Executes distributed query.
|
GridCacheQueryFuture<?> |
GridCacheLocalQueryManager.queryDistributed(GridCacheQueryBean qry,
Collection<GridNode> nodes)
Executes distributed query.
|
abstract GridCacheQueryFuture<?> |
GridCacheQueryManager.queryFieldsDistributed(GridCacheQueryBean qry,
Collection<GridNode> nodes)
Executes distributed fields query.
|
GridCacheQueryFuture<?> |
GridCacheDistributedQueryManager.queryFieldsDistributed(GridCacheQueryBean qry,
Collection<GridNode> nodes)
Executes distributed fields query.
|
GridCacheQueryFuture<?> |
GridCacheLocalQueryManager.queryFieldsDistributed(GridCacheQueryBean qry,
Collection<GridNode> nodes)
Executes distributed fields query.
|
abstract GridCacheQueryFuture<?> |
GridCacheQueryManager.queryFieldsLocal(GridCacheQueryBean qry)
Executes distributed fields query.
|
GridCacheQueryFuture<?> |
GridCacheDistributedQueryManager.queryFieldsLocal(GridCacheQueryBean qry)
Executes distributed fields query.
|
GridCacheQueryFuture<?> |
GridCacheLocalQueryManager.queryFieldsLocal(GridCacheQueryBean qry)
Executes distributed fields query.
|
abstract GridCacheQueryFuture<?> |
GridCacheQueryManager.queryLocal(GridCacheQueryBean qry)
Executes local query.
|
GridCacheQueryFuture<?> |
GridCacheDistributedQueryManager.queryLocal(GridCacheQueryBean qry)
Executes local query.
|
GridCacheQueryFuture<?> |
GridCacheLocalQueryManager.queryLocal(GridCacheQueryBean qry)
Executes local query.
|
| Modifier and Type | Method and Description |
|---|---|
GridCacheQueryFuture<R> |
VisorQueryTask.VisorFutureResultSetHolder.future() |
| Modifier and Type | Method and Description |
|---|---|
static GridBiTuple<List<Object[]>,Map.Entry<Object,Object>> |
VisorQueryUtils.fetchScanQueryRows(GridCacheQueryFuture<Map.Entry<Object,Object>> fut,
Map.Entry<Object,Object> savedNext,
int pageSize)
Fetch rows from SCAN query future.
|
static GridBiTuple<List<Object[]>,List<?>> |
VisorQueryUtils.fetchSqlQueryRows(GridCacheQueryFuture<List<?>> fut,
List<?> savedNext,
int pageSize)
Collects rows from sql query future, first time creates meta and column names arrays.
|
| Constructor and Description |
|---|
VisorQueryTask.VisorFutureResultSetHolder(GridCacheQueryFuture<R> fut,
R next,
Boolean accessed) |
Copyright © 2014. All rights reserved.