Uses of Interface
com.tangosol.util.ConcurrentMap
-
Packages that use ConcurrentMap Package Description com.oracle.coherence.grpc.proxy The Coherence gRPC server implementation.com.tangosol.io Contains classes providing cache persistence of serialized objects.com.tangosol.net Contains basic cluster interfaces and factories.com.tangosol.net.cache Contains classes providing various caching strategies.com.tangosol.util Contains various generic utilities. -
-
Uses of ConcurrentMap in com.oracle.coherence.grpc.proxy
Fields in com.oracle.coherence.grpc.proxy declared as ConcurrentMap Modifier and Type Field Description protected ConcurrentMap<Filter<?>,MapListenerProxy.FilterInfo>
MapListenerProxy. f_mapFilter
The map ofFilters
that thisMapListenerProxy
was registered with.protected ConcurrentMap<Object,Integer>
MapListenerProxy. f_mapKeys
The map of keys that thisMapListenerProxy
was registered with. -
Uses of ConcurrentMap in com.tangosol.io
Methods in com.tangosol.io that return ConcurrentMap Modifier and Type Method Description protected ConcurrentMap
AsyncBinaryStore. getPendingMap()
Obtain the map that contains all of the pending store and erase data. -
Uses of ConcurrentMap in com.tangosol.net
Subinterfaces of ConcurrentMap in com.tangosol.net Modifier and Type Interface Description interface
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
Classes in com.tangosol.net.cache that implement ConcurrentMap Modifier and Type Class Description class
BundlingNamedCache
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
VersionedNearCache
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.Methods in com.tangosol.net.cache that return ConcurrentMap Modifier and Type Method Description ConcurrentMap
CachingMap. getControlMap()
Obtain the ConcurrentMap that should be used to synchronize the front map modification access.ConcurrentMap
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
Subinterfaces of ConcurrentMap in com.tangosol.util Modifier and Type Interface Description interface
TransactionMap
ConcurrentMap with additional transaction support.Classes in com.tangosol.util that implement ConcurrentMap Modifier and Type Class Description static 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
SegmentedConcurrentMap
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.Fields in com.tangosol.util declared as ConcurrentMap Modifier and Type Field Description protected ConcurrentMap<TK,TV>
ConverterCollections.ConverterNamedCache. m_mapConcurrent
A Converter ConcurrentMap around the underlying NamedCache.Methods in com.tangosol.util that return ConcurrentMap Modifier and Type Method Description ConcurrentMap
TransactionMap. getBaseMap()
Return the base map, which contains this TransactionMap's committed data.ConcurrentMap<FK,FV>
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.Methods in com.tangosol.util with parameters of type ConcurrentMap Modifier and Type Method Description 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.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>
RInvocableMapHelper. 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.Constructors in com.tangosol.util with parameters of type ConcurrentMap Constructor Description ConverterConcurrentMap(ConcurrentMap<FK,FV> map, Converter<FK,TK> convKeyUp, Converter<TK,FK> convKeyDown, Converter<FV,TV> convValUp, Converter<TV,FV> convValDown)
Constructor.
-