Uses of Interface
com.tangosol.util.ConcurrentMap
Package
Description
The Coherence gRPC server implementation.
Contains classes providing cache persistence of serialized objects.
Contains basic cluster interfaces and factories.
Contains classes providing various caching strategies.
Contains various generic utilities.
-
Uses of ConcurrentMap in com.oracle.coherence.grpc.proxy
Modifier and TypeFieldDescriptionprotected final ConcurrentMap
<Filter<?>, MapListenerProxy.FilterInfo> MapListenerProxy.f_mapFilter
The map ofFilters
that thisMapListenerProxy
was registered with.protected final ConcurrentMap
<Object, Integer> MapListenerProxy.f_mapKeys
The map of keys that thisMapListenerProxy
was registered with. -
Uses of ConcurrentMap in com.tangosol.io
Modifier and TypeMethodDescriptionprotected ConcurrentMap
AsyncBinaryStore.getPendingMap()
Obtain the map that contains all of the pending store and erase data. -
Uses of ConcurrentMap in com.tangosol.net
Modifier and TypeInterfaceDescriptioninterface
NamedCache<K,
V> A Map-based data-structure that manages entries across one or more processes.interface
NamedMap<K,
V> A Map-based data-structure that manages entries across one or more processes. -
Uses of ConcurrentMap in com.tangosol.net.cache
Modifier and TypeClassDescriptionclass
Bundling NamedCache implementation.class
ContinuousQueryCache<K,
V_BACK, V_FRONT> Create a materialized view of aNamedCache
using theCoherence
Continuous Query capability.class
NearCache<K,
V> A "near cache" is a CachingMap whose front map is a size-limited and/or auto-expiring local cache, and whose back map is a distributed cache.class
ReadonlyNamedCache<K,
V> A simple extension of the WrapperNamedCache implementation that shields all content mutating operations such as put(), remove(), lock() etc.class
Deprecated.as of Coherence 3.2 all the functionality of this class has been superceded by the NearCache implementationclass
WrapperNamedCache<K,
V> A simple implementation of NamedCache interface built as a wrapper around any Map implementation.Modifier and TypeMethodDescriptionCachingMap.getControlMap()
Obtain the ConcurrentMap that should be used to synchronize the front map modification access.ReadWriteBackingMap.getControlMap()
Get the concurrency control map for this backing map.protected ConcurrentMap
SerializationPagedCache.getLockMap()
Obtain the map used for managing key- and map-level locks to ensure data consistency.protected ConcurrentMap
ReadWriteBackingMap.instantiateControlMap()
Factory pattern: Create the concurrency control map for this backing map. -
Uses of ConcurrentMap in com.tangosol.util
Modifier and TypeInterfaceDescriptioninterface
ConcurrentMap with additional transaction support.Modifier and TypeClassDescriptionstatic class
ConverterCollections.ConverterConcurrentMap<FK,
TK, FV, TV> A Converter ConcurrentMap views an underlying ConcurrentMap through a set of key and value Converters.static class
ConverterCollections.ConverterNamedCache<FK,
TK, FV, TV> A Converter NamedCache views an underlying NamedCache through a set of key and value Converters.class
An implementation of SegmentedHashMap that also implements the ConcurrentMap interface.class
WrapperConcurrentMap<K,
V> A simple implementation of ConcurrentMap interface built as a wrapper around any Map implementation.Modifier and TypeFieldDescriptionprotected ConcurrentMap
<TK, TV> ConverterCollections.ConverterNamedCache.m_mapConcurrent
A Converter ConcurrentMap around the underlying NamedCache.Modifier and TypeMethodDescriptionTransactionMap.getBaseMap()
Return the base map, which contains this TransactionMap's committed data.ConverterCollections.ConverterConcurrentMap.getConcurrentMap()
Return the underlying ConcurrentMap.static <FK,
TK, FV, TV>
ConcurrentMap<TK, TV> ConverterCollections.getConcurrentMap
(ConcurrentMap<FK, FV> map, Converter<FK, TK> convKeyUp, Converter<TK, FK> convKeyDown, Converter<FV, TV> convValUp, Converter<TV, FV> convValDown) Returns a Converter instance of ConcurrentMap.Modifier and TypeMethodDescriptionstatic <FK,
TK, FV, TV>
ConcurrentMap<TK, TV> ConverterCollections.getConcurrentMap
(ConcurrentMap<FK, FV> map, Converter<FK, TK> convKeyUp, Converter<TK, FK> convKeyDown, Converter<FV, TV> convValUp, Converter<TV, FV> convValDown) Returns a Converter instance of ConcurrentMap.static <K,
V, R> Map <K, R> InvocableMapHelper.invokeAllLocked
(ConcurrentMap<K, V> map, Set<? extends InvocableMap.Entry<K, V>> setEntries, InvocableMap.EntryProcessor<K, V, R> agent) Invoke the passed EntryProcessor against the entries specified by the passed map and entries.static <K,
V, R> R InvocableMapHelper.invokeLocked
(ConcurrentMap<K, V> map, InvocableMap.Entry<K, V> entry, InvocableMap.EntryProcessor<K, V, R> agent) Invoke the passed EntryProcessor against the specified Entry.static List
InvocableMapHelper.lockAll
(ConcurrentMap map, Collection collKeys, long cWait) Attempt to lock all the specified keys within a specified period of time.static void
InvocableMapHelper.unlockAll
(ConcurrentMap map, Collection collKeys) Unlock all the specified keys.