Apache Geode Native .NET Reference 1.15.0
Apache::Geode::Client::ICqEvent< TKey, TResult > Interface Template Reference

An application plug-in that can be installed on a region. More...

#include <ICqEvent.hpp>

Public Member Functions

CqOperation getBaseOperation ()
 Handles the event of an entry's value being modified in a region. More...
 
CqQuery< TKey, TResult > ^ getCq ()
 Handles the event of a new key being added to a region. More...
 
TKey getKey ()
 Called when the region containing this callback is destroyed, when the cache is closed. More...
 

Detailed Description

template<class TKey, class TResult>
interface Apache::Geode::Client::ICqEvent< TKey, TResult >

An application plug-in that can be installed on a region.

Listener change notifications are invoked after the change has occured.

Listeners receive notifications when entries in a region change or changes occur to the region attributes themselves.

A cache listener is defined in the RegionAttributes.

The methods on a ICacheListener are invoked asynchronously. Multiple events can cause concurrent invocation of ICacheListener methods. If event A occurs before event B, there is no guarantee that their corresponding ICacheListener method invocations will occur in the same order. Any exceptions thrown by the listener are caught by Geode and logged.

Listeners are user callbacks that are invoked by Geode. It is important to ensure that minimal work is done in the listener before returning control back to Geode. For example, a listener implementation may choose to hand off the event to a thread pool that then processes the event on its thread rather than the listener thread

See also
RegionAttributesFactory.SetCacheListener, RegionAttributes.CacheListener, ICacheLoader, ICacheWriter

Member Function Documentation

◆ getBaseOperation()

template<class TKey , class TResult >
CqOperation Apache::Geode::Client::ICqEvent< TKey, TResult >::getBaseOperation ( )

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.

See also
Region.Put

◆ getCq()

template<class TKey , class TResult >
CqQuery< TKey, TResult > ^ Apache::Geode::Client::ICqEvent< TKey, TResult >::getCq ( )

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.

See also
Region.Create, Region.Put, Region.Get

◆ getKey()

template<class TKey , class TResult >
TKey Apache::Geode::Client::ICqEvent< TKey, TResult >::getKey ( )

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.

See also
Cache.Close, Region.DestroyRegion

Apache Geode C++ Cache .NET API Documentation