Apache Geode Native .NET Reference 1.15.0
|
Extension of CqListener. More...
#include <ICqStatusListener.hpp>
Inherits Apache::Geode::Client::ICqListener< TKey, TResult >.
Public Member Functions | |
void | Close () |
Called when the region containing this callback is destroyed, when the cache is closed. More... | |
void | Close () |
Called when the region containing this callback is destroyed, when the cache is closed. More... | |
virtual void | OnCqConnected () |
Called when the cq establishes a connection with a server More... | |
virtual void | OnCqDisconnected () |
Called when the cq loses connection with all servers. More... | |
void | OnError (CqEvent< TKey, TResult >^ ev) |
Handles the event of an entry's value being modified in a region. More... | |
void | OnError (CqEvent^ ev) |
Handles the event of an entry's value being modified in a region. More... | |
void | OnEvent (CqEvent< TKey, TResult >^ ev) |
Handles the event of a new key being added to a region. More... | |
void | OnEvent (CqEvent^ ev) |
Handles the event of a new key being added to a region. More... | |
Extension of CqListener.
Adds two new methods to CqListener, one that is called when the cq is connected and one that is called when the cq is disconnected.
|
inherited |
Called when the region containing this callback is destroyed, when the cache is closed.
Implementations should clean up any external resources, such as database connections. Any runtime exceptions this method throws will be logged.
It is possible for this method to be called multiple times on a single callback instance, so implementations must be tolerant of this.
|
inherited |
Called when the region containing this callback is destroyed, when the cache is closed.
Implementations should clean up any external resources, such as database connections. Any runtime exceptions this method throws will be logged.
It is possible for this method to be called multiple times on a single callback instance, so implementations must be tolerant of this.
|
virtual |
Called when the cq establishes a connection with a server
|
virtual |
Called when the cq loses connection with all servers.
|
inherited |
Handles the event of an entry's value being modified in a region.
This entry previously existed in this region in the local cache, but its previous value may have been null.
ev | EntryEvent denotes the event object associated with updating the entry. |
|
inherited |
Handles the event of an entry's value being modified in a region.
This entry previously existed in this region in the local cache, but its previous value may have been null.
ev | EntryEvent denotes the event object associated with updating the entry. |
|
inherited |
Handles the event of a new key being added to a region.
The entry did not previously exist in this region in the local cache (even with a null value).
This function does not throw any exception.
ev | Denotes the event object associated with the entry creation. |
|
inherited |
Handles the event of a new key being added to a region.
The entry did not previously exist in this region in the local cache (even with a null value).
This function does not throw any exception.
ev | Denotes the event object associated with the entry creation. |