Click or drag to resize

IInvocableCacheEntrySetValue Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Store the value corresponding to this entry.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
void SetValue(
	Object value,
	bool isSynthetic
)

Parameters

value
Type: SystemObject
The new value for this entry.
isSynthetic
Type: SystemBoolean
Pass true only if the insertion into or modification of the cache should be treated as a synthetic event.
Remarks

If the entry does not exist, then the entry will be created by invoking this method, even with a null value (assuming the cache supports null values).

Unlike the property Value, this method does not return the previous value, and as a result may be significantly less expensive (in terms of cost of execution) for certain cache implementations.

See Also