Click or drag to resize

PofUpdaterUpdate Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Update the passed target object using the specified value.

Namespace:  Tangosol.Util.Extractor
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public void Update(
	Object oTarget,
	Object oValue
)

Parameters

oTarget
Type: SystemObject
The object to update.
oValue
Type: SystemObject
The new value to update the target's property with.

Implements

IValueUpdaterUpdate(Object, Object)
Exceptions
ExceptionCondition
NotSupportedException Always, as it is expected that this extractor will only be executed within the cluster.
Remarks
This method will always throw a NotSupportedException if called directly by the .NET client application, as its execution is only meaningful within the cluster.

It is expected that this extractor will only be used against POF-encoded binary entries within a remote partitioned cache.

See Also