Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

ICacheEventTransformer interface is used to allow an event consumer to change the content of a CacheEventArgs destined for the corresponding ICacheListener.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public interface ICacheEventTransformer

Remarks

In general, the Transform(CacheEventArgs) method is called after the original CacheEventArgs is evaluated by an IFilter (such as CacheEventFilter). The values contained by the returned CacheEventArgs object will be the ones given (sent) to the corresponding listener. Returning null will prevent the emission of the event altogether.

Note: Currently, the ICacheEventTransformer interface is supported only by partitioned caches.

See Also