VMware GemFire Native Client C++ API Reference
|
VMware VMware GemFire Native C++ Reference 10.4.3
|
This interface provides methods to get all the information sent from the server about the CQ event. More...
#include <CqEvent.hpp>
Public Member Functions | |
| virtual CqOperation | getBaseOperation () const =0 |
| Get the operation on the base region that triggered this event. | |
| virtual std::shared_ptr< CqQuery > | getCq () const =0 |
| Get the CqQuery object of this event. | |
| virtual std::shared_ptr< CacheableBytes > | getDeltaValue () const =0 |
| Get the delta modification. | |
| virtual std::shared_ptr< CacheableKey > | getKey () const =0 |
| Get the key relating to the event. | |
| virtual std::shared_ptr< Cacheable > | getNewValue () const =0 |
| Get the new value of the modification. | |
| virtual CqOperation | getQueryOperation () const =0 |
| Get the operation on the query results. | |
Detailed Description
This interface provides methods to get all the information sent from the server about the CQ event.
The CqEvent is passed to the CQs CqListener methods. It can be used to retrieve such information as the region operation, CQ operation associated with the event, the new key and value from the event, and the CqQuery object associated with the event. The CqEvent is not an extension of CacheEvent.
Member Function Documentation
◆ getBaseOperation()
|
pure virtual |
Get the operation on the base region that triggered this event.
- Returns
- Operation operation on the base region (on which CQ is created).
◆ getCq()
|
pure virtual |
◆ getDeltaValue()
|
pure virtual |
Get the delta modification.
If there is no delta, returns null. New value may still be available.
- Returns
- CacheableBytes delta value.
◆ getKey()
|
pure virtual |
Get the key relating to the event.
In case of REGION_CLEAR and REGION_INVALIDATE operation, the key will be nullptr.
- Returns
- Object key.
◆ getNewValue()
|
pure virtual |
Get the new value of the modification.
If there is no new value returns nullptr, this will happen during delete operation.
- Returns
- Object new/modified value.
◆ getQueryOperation()
|
pure virtual |
Get the operation on the query results.
Supported operations include update, create, destroy, region clear and region invalidate.
- Returns
- Operation operation with respect to CQ.
Apache Geode C++ Cache API Documentation