VMware Tanzu GemFire Native C++ Reference 10.2.7
|
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. More... | |
virtual std::shared_ptr< CqQuery > | getCq () const =0 |
Get the CqQuery object of this event. More... | |
virtual std::shared_ptr< CacheableBytes > | getDeltaValue () const =0 |
Get the delta modification. More... | |
virtual std::shared_ptr< CacheableKey > | getKey () const =0 |
Get the key relating to the event. More... | |
virtual std::shared_ptr< Cacheable > | getNewValue () const =0 |
Get the new value of the modification. More... | |
virtual CqOperation | getQueryOperation () const =0 |
Get the operation on the query results. More... | |
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.
|
pure virtual |
Get the operation on the base region that triggered this event.
|
pure virtual |
|
pure virtual |
Get the delta modification.
If there is no delta, returns null. New value may still be available.
|
pure virtual |
Get the key relating to the event.
In case of REGION_CLEAR and REGION_INVALIDATE operation, the key will be nullptr.
|
pure virtual |
Get the new value of the modification.
If there is no new value returns nullptr, this will happen during delete operation.
|
pure virtual |
Get the operation on the query results.
Supported operations include update, create, destroy, region clear and region invalidate.