Uses of Interface
org.apache.ignite.cache.query.QueryCursor
-
Packages that use QueryCursor 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.odbc.odbc org.apache.ignite.internal.processors.platform.client.cache org.apache.ignite.internal.processors.query -
-
Uses of QueryCursor in org.apache.ignite
Methods in org.apache.ignite that return QueryCursor 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 QueryCursor in org.apache.ignite.cache.query
Subinterfaces of QueryCursor in org.apache.ignite.cache.query Modifier and Type Interface Description interfaceFieldsQueryCursor<T>SQL query result cursor.Classes in org.apache.ignite.cache.query that implement QueryCursor Modifier and Type Class Description classBulkLoadContextCursorA special FieldsQueryCursor subclass that is used as a sentinel to transfer data from bulk load (COPY) command to the JDBC or other client-facing driver: the bulk load batch processor and parameters to send to the client. -
Uses of QueryCursor in org.apache.ignite.client
Methods in org.apache.ignite.client that return QueryCursor Modifier and Type Method Description <R> QueryCursor<R>ClientCache. query(ContinuousQuery<K,V> qry, ClientDisconnectListener disconnectListener)StartContinuousQueryon the cache.<R> QueryCursor<R>ClientCache. query(Query<R> qry)Queries cache. -
Uses of QueryCursor in org.apache.ignite.internal.client.thin
Methods in org.apache.ignite.internal.client.thin that return QueryCursor Modifier and Type Method Description <R> QueryCursor<R>TcpClientCache. query(ContinuousQuery<K,V> qry, ClientDisconnectListener disconnectLsnr)StartContinuousQueryon the cache.<R> QueryCursor<R>TcpClientCache. query(Query<R> qry)Queries cache. -
Uses of QueryCursor in org.apache.ignite.internal.processors.cache
Classes in org.apache.ignite.internal.processors.cache that implement QueryCursor Modifier and Type Class Description classQueryCursorImpl<T>Query cursor implementation.Methods in org.apache.ignite.internal.processors.cache that return QueryCursor 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 QueryCursor in org.apache.ignite.internal.processors.cache.query
Subinterfaces of QueryCursor in org.apache.ignite.internal.processors.cache.query Modifier and Type Interface Description interfaceQueryCursorEx<T>Extended query cursor interface allowing for "getAll" to output data into destination other than Collection. -
Uses of QueryCursor in org.apache.ignite.internal.processors.odbc.odbc
Methods in org.apache.ignite.internal.processors.odbc.odbc with parameters of type QueryCursor Modifier and Type Method Description static longOdbcUtils. rowsAffected(QueryCursor<List<?>> qryCur)Get affected rows for statement. -
Uses of QueryCursor in org.apache.ignite.internal.processors.platform.client.cache
Methods in org.apache.ignite.internal.processors.platform.client.cache with parameters of type QueryCursor Modifier and Type Method Description voidClientCacheQueryContinuousHandle. setCursor(QueryCursor<?> cur)Sets the cursor. -
Uses of QueryCursor in org.apache.ignite.internal.processors.query
Methods in org.apache.ignite.internal.processors.query that return QueryCursor Modifier and Type Method Description <K,V>
QueryCursor<javax.cache.Cache.Entry<K,V>>GridQueryProcessor. querySql(GridCacheContext<?,?> cctx, SqlQuery qry, boolean keepBinary)Execute distributed SQL query.Constructors in org.apache.ignite.internal.processors.query with parameters of type QueryCursor Constructor Description QueryKeyValueIterable(QueryCursor<List<?>> cur)Constructor.
-