Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
ICacheEventTransformer interface is used to allow an event consumer to change the content of a CacheEventArgs destined for the corresponding ICacheListener.

Namespace: Tangosol.Net.Cache
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

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