Package | Description |
---|---|
com.gemstone.gemfire.cache.query |
GemFire's query service, an implementation of an OQL/SQL-style
query processor with supporting indexes.
|
Modifier and Type | Method and Description |
---|---|
void |
CqQuery.close()
Close the CQ and stop execution.
|
void |
CqQuery.execute()
Start executing the CQ or if this CQ is stopped earlier, resumes execution of the CQ.
|
void |
QueryService.executeCqs()
Starts execution of all the registered continuous queries for this client.
|
void |
QueryService.executeCqs(String regionName)
Starts execution of all the continuous queries registered on the specified
region for this client.
|
<E> CqResults<E> |
CqQuery.executeWithInitialResults()
Starts executing the CQ or, if the CQ is in a stopped state, resumes
execution.
|
List<String> |
QueryService.getAllDurableCqsFromServer()
Retrieves all the durable CQs registered by the client calling this method.
|
CqQuery[] |
QueryService.getCqs(String regionName)
Retrieves all the registered Continuous Queries for a given region.
|
CqQuery |
QueryService.newCq(String queryString,
CqAttributes cqAttr)
Constructs a new continuous query, represented by an instance of
CqQuery.
|
CqQuery |
QueryService.newCq(String queryString,
CqAttributes cqAttr,
boolean isDurable)
Constructs a new continuous query, represented by an instance of
CqQuery.
|
CqQuery |
QueryService.newCq(String name,
String queryString,
CqAttributes cqAttr)
Constructs a new named continuous query, represented by an instance of
CqQuery.
|
CqQuery |
QueryService.newCq(String name,
String queryString,
CqAttributes cqAttr,
boolean isDurable)
Constructs a new named continuous query, represented by an instance of
CqQuery.
|
void |
CqQuery.stop()
Stops this CqQuery without releasing resources.
|
void |
QueryService.stopCqs()
Stops execution of all the continuous queries for this client to become inactive.
|
void |
QueryService.stopCqs(String regionName)
Stops execution of all the continuous queries registered on the specified
region for this client.
|
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.