Click or drag to resize

InvocableCacheEx Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Contains extension methods for IInvocableCache for the new Java 8 InvocableMap methods.
Inheritance Hierarchy
SystemObject
  Tangosol.Net.CacheInvocableCacheEx

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static class InvocableCacheEx

The InvocableCacheEx type exposes the following members.

Methods
  NameDescription
Public methodStatic memberGetOrDefault
Returns the value to which the specified key is mapped, or the defaultValue if this cache contains no mapping for the key.
Public methodStatic memberInsertIfAbsent
If the specified key is not already associated with a value (or is mapped to null) associates it with the given value and returns null, else returns the current value.
Public methodStatic memberRemove
Removes the entry for the specified key only if it is currently mapped to the specified value.
Public methodStatic memberReplace(IInvocableCache, Object, Object)
Replaces the entry for the specified key only if it is currently mapped to some value.
Public methodStatic memberReplace(IInvocableCache, Object, Object, Object)
Replaces the entry for the specified key only if currently mapped to the specified value.
Top
See Also