Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.1.3.0.0)
E47892-01
Update the entry's value.

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

Syntax

C#
void Update(
	IValueUpdater updater,
	Object value
)

Parameters

updater
Type: Tangosol.Util..::..IValueUpdater
An IValueUpdater used to modify the entry's value.
value
Type: System..::..Object
Value to update target object to.

Remarks

Calling this method is semantically equivalent to:
            object target = entry.Value;
            updater.Update(target, value);
            entry.Value = target;
            
The benefit of using this method is that it may allow the entry implementation to significantly optimize the operation, such as for purposes of delta updates and backup maintenance.

See Also