Click or drag to resize

ExtractorEventTransformer Constructor (String)

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Construct a ExtractorEventTransformer that transforms CacheEventArgs's values based on the specified method name.

Namespace:  Tangosol.Util.Transformer
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public ExtractorEventTransformer(
	string methodName
)

Parameters

methodName
Type: SystemString
The name of the method to invoke via reflection.
Remarks
The name could be a comma-delimited sequence of method names which will result in a MultiExtractor that is based on a corresponding array of IValueExtractor objects; individual array elements will be either ReflectionExtractor or ChainedExtractor objects.

Note: The specified extractor will be applied to both old and new values.

See Also