Uses of Interface
com.tangosol.net.NamedMap
-
Packages that use NamedMap Package Description com.oracle.coherence.concurrent Coherence Concurrent utilities based on java.util.concurrent.com.oracle.coherence.concurrent.atomic A small toolkit of classes that support lock-free thread-safe programming on single variables.com.oracle.coherence.concurrent.locks Interfaces and classes providing a framework for locking and waiting for conditions that is distinct from built-in synchronization and monitors.com.oracle.coherence.mp.config Coherence support for Eclipse MicroProfile Config.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 NamedMap in com.oracle.coherence.concurrent
Methods in com.oracle.coherence.concurrent that return NamedMap Modifier and Type Method Description protected static NamedMap<String,com.oracle.coherence.concurrent.internal.LatchCounter>
Latches. latchesMap()
Return CoherenceNamedMap
containing the countdown latches state.static NamedMap<String,com.oracle.coherence.concurrent.internal.SemaphoreStatus>
Semaphores. semaphoresMap()
Return CoherenceNamedMap
for the remote semaphores.Constructors in com.oracle.coherence.concurrent with parameters of type NamedMap Constructor Description RemoteCountDownLatch(String sName, int count, NamedMap<String,com.oracle.coherence.concurrent.internal.LatchCounter> latches)
Constructs aRemoteCountDownLatch
initialized with the given count.RemoteSemaphore(String sName, int permits, NamedMap<String,com.oracle.coherence.concurrent.internal.SemaphoreStatus> semaphores)
Create an instance ofRemoteSemaphore
-
Uses of NamedMap in com.oracle.coherence.concurrent.atomic
Constructors in com.oracle.coherence.concurrent.atomic with parameters of type NamedMap Constructor Description RemoteAtomicBoolean(NamedMap<String,AtomicBoolean> mapAtomic, String sName)
ConstructRemoteAtomicBoolean
instance.RemoteAtomicInteger(NamedMap<String,AtomicInteger> mapAtomic, String sName)
ConstructRemoteAtomicInteger
instance.RemoteAtomicMarkableReference(NamedMap<String,AtomicMarkableReference<V>> mapAtomic, String sName)
ConstructRemoteAtomicMarkableReference
instance.RemoteAtomicReference(NamedMap<String,AtomicReference<V>> mapAtomic, String sName)
ConstructRemoteAtomicReference
instance.RemoteAtomicStampedReference(NamedMap<String,AtomicStampedReference<V>> mapAtomic, String sName)
ConstructRemoteAtomicStampedReference
instance. -
Uses of NamedMap in com.oracle.coherence.concurrent.locks
Methods in com.oracle.coherence.concurrent.locks that return NamedMap Modifier and Type Method Description static NamedMap<String,com.oracle.coherence.concurrent.locks.internal.ExclusiveLockHolder>
Locks. exclusiveLocksMap()
Return CoherenceNamedMap
containing the exclusive locks state.static NamedMap<String,com.oracle.coherence.concurrent.locks.internal.ReadWriteLockHolder>
Locks. readWriteLocksMap()
Return CoherenceNamedMap
containing the read/write locks state. -
Uses of NamedMap in com.oracle.coherence.mp.config
Methods in com.oracle.coherence.mp.config that return NamedMap Modifier and Type Method Description NamedMap<String,String>
CoherenceConfigSource. getConfigMap()
For testing. -
Uses of NamedMap in com.tangosol.net
Subinterfaces of NamedMap 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.Methods in com.tangosol.net that return NamedMap Modifier and Type Method Description NamedMap<K,V>
MapViewBuilder. build()
Construct aview
of theNamedMap
provided to this builder.<K,V>
NamedMap<K,V>CoherenceSession. getMap(String sName, NamedMap.Option... options)
<K,V>
NamedMap<K,V>Session. getMap(String sName, NamedMap.Option... options)
NamedMap<K,V>
AsyncNamedMap. getNamedMap()
Return theNamedCache
instance thisAsyncNamedCache
is based on. -
Uses of NamedMap in com.tangosol.net.cache
Classes in com.tangosol.net.cache that implement NamedMap 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. -
Uses of NamedMap in com.tangosol.util
Classes in com.tangosol.util that implement NamedMap Modifier and Type Class Description static class
ConverterCollections.ConverterNamedCache<FK,TK,FV,TV>
A Converter NamedCache views an underlying NamedCache through a set of key and value Converters.
-