Uses of Interface
com.tangosol.util.LongArray
Package
Description
Contains classes related to POF serialization and deserialization.
Contains classes related to POF stream navigation and manipulation.
Contains classes providing various caching strategies.
Contains classes and helpers for implementing various types of persistence.
Contains various generic utilities.
-
Uses of LongArray in com.tangosol.io.pof
Modifier and TypeFieldDescriptionprotected LongArray
PofBufferReader.m_arrayRefs
Lazily-constructed mapping of identities to references.protected LongArray
SimplePofContext.m_laClass
A LongArray of user types, indexed by type identifier.protected LongArray
SimplePofContext.m_laSerializer
A LongArray of PofSerializer objects, indexed by type identifier.Modifier and TypeMethodDescriptionprotected LongArray
PofBufferReader.ensureReferenceRegistry()
Obtain the registry for identity-reference pairs, creating it if necessary.PofBufferReader.readLongArray
(int iProp, LongArray array) Read a LongArray of object values.<T> LongArray
<T> PofReader.readLongArray
(int iProp, LongArray<T> array) Read a LongArray of object values.Modifier and TypeMethodDescriptionPofBufferReader.readLongArray
(int iProp, LongArray array) Read a LongArray of object values.<T> LongArray
<T> PofReader.readLongArray
(int iProp, LongArray<T> array) Read a LongArray of object values.void
PofBufferWriter.writeLongArray
(int iProp, LongArray la) void
PofBufferWriter.writeLongArray
(int iProp, LongArray la, Class clz) Write a uniform LongArray property to the POF stream.<T> void
PofWriter.writeLongArray
(int iProp, LongArray<? extends T> la) Write a LongArray property to the POF stream.<T> void
PofWriter.writeLongArray
(int iProp, LongArray<T> la, Class<T> clz) Write a uniform LongArray property to the POF stream. -
Uses of LongArray in com.tangosol.io.pof.reflect
Modifier and TypeFieldDescriptionprotected LongArray
AbstractPofValue.m_arrayRefs
Lazily-constructed mapping of identities to references.Modifier and TypeFieldDescriptionCodecs.LongArrayCodec.f_clzLa
Class that represents the LongArray implementation that will be serialized and deserialized into.Modifier and TypeMethodDescriptionprotected LongArray
AbstractPofValue.ensureReferenceRegistry()
Obtain the registry for identity-reference pairs, creating it if necessary.ModifierConstructorDescriptionLongArrayCodec
(Class<LongArray<Object>> clzLa) Construct a LongArrayCodec. -
Uses of LongArray in com.tangosol.net.cache
Modifier and TypeFieldDescriptionprotected LongArray
LocalCache.m_arrayExpiry
Array of set of keys, indexed by the time of expiry.Modifier and TypeMethodDescriptionprotected LongArray
OverflowMap.getExpiryArray()
Obtain the array of keys that have an expiration, indexed by expiration times.protected LongArray
SerializationCache.getExpiryArray()
Get the Expiry data structure.protected LongArray
SerializationCache.getLruArray()
Get the LRU data structure.protected LongArray
ReadWriteBackingMap.WriteQueue.getRipeArray()
Return aLongArray
indexed by ripe time (when entries become eligible to be written), and associated to a list of binary keys.Modifier and TypeMethodDescriptionprotected void
OverflowMap.setExpiryArray
(LongArray laExpiry) Specify the array of keys that have an expiration, indexed by expiration times. -
Uses of LongArray in com.tangosol.persistence
Modifier and TypeMethodDescriptionCachePersistenceHelper.getCacheNames
(com.oracle.coherence.persistence.PersistentStore<ReadBuffer> store) Return the cache names that have beenstored
in the specified store.Modifier and TypeMethodDescriptionvoid
Set theLongArray
of caches for this visitor.static void
CachePersistenceHelper.storeCacheNames
(com.oracle.coherence.persistence.PersistentStore store, LongArray laCaches) Persist the specified cache names in the persistent store. -
Uses of LongArray in com.tangosol.util
Modifier and TypeClassDescriptionclass
An implementation of portions of the LongArray interface.class
An abstract base class for thread-safeLongArray
s which are protected by lock(s).class
A data structure resembling an array indexed by long values, stored as an AVL tree.static class
ConverterLongArray converts the value of the LongArray from its raw form (typeF
) to the desired from (typeT
).class
A thread-safe variant ofLongArray
in which all mutating operations (e.g.static class
An immutable emptyLongArray
class
A data structure resembling a long array indexed by long values.class
A thread-safe LongArray implementation for read heavy workloads but which is also efficient with frequent and/or bursty writes.class
A thread-safe variant ofLongArray
in which is protected by a ReentrantLock.class
An implementation of LongArray that stores values in an array, thus is actually an "IntArray".class
SparseArray<V>
A data structure resembling an Object array indexed by long values.static class
Abstract wrapper implementation for LongArrays.Modifier and TypeFieldDescriptionprotected static final LongArray
CopyOnWriteLongArray.EMPTY_ARRAY
An empty placeholder array.ConverterCollections.ConverterLongArray.f_laDelegate
The LongArray to delegate to.Modifier and TypeFieldDescriptionSafeLongArray.f_lock
The lock to hold during read and write operations.ReadHeavyLongArray.f_lockWrite
The write lock, delegating to the one in the super class.ReadHeavyLongArray.m_lockRead
The mutable read lock.Modifier and TypeMethodDescriptionConverterCollections.ConverterLongArray.clone()
LongArray.clone()
Make a clone of the LongArray.NullImplementation.NullLongArray.clone()
Return a shallow copy of the specified LongArray.CopyOnWriteLongArray.delegate()
Return the internal LongArray.WrapperCollections.AbstractWrapperLongArray.delegate()
Return the delegate LongArray.static <F,
T> LongArray <T> ConverterCollections.getLongArray
(LongArray<F> la, Converter<F, T> convUp, Converter<T, F> convDown) Returns a LongArray storing values with typeF
and converting to typeV
as and when required.static <V> LongArray
<V> NullImplementation.getLongArray()
Returns an immutable emptyLongArray
.protected LongArray
TaskDaemon.getTasks()
Obtain the pending tasks.static <V> LongArray
<V> LongArray.singleton
(V oValue) Modifier and TypeMethodDescriptionAbstractSafeLongArray.acquireReadLock()
Acquire the read lock.ReadHeavyLongArray.acquireReadLock()
SafeLongArray.acquireReadLock()
AbstractSafeLongArray.acquireWriteLock()
Acquire the write lock.ReadHeavyLongArray.acquireWriteLock()
SafeLongArray.acquireWriteLock()
SafeLongArray.getLock()
Return the lock used to protect this LongArray, with the unsafe delegate as itsresource
.Modifier and TypeMethodDescriptionReturn a shallow copy of the specified LongArray.static <F,
T> LongArray <T> ConverterCollections.getLongArray
(LongArray<F> la, Converter<F, T> convUp, Converter<T, F> convDown) Returns a LongArray storing values with typeF
and converting to typeV
as and when required.protected void
CopyOnWriteLongArray.setDelegate
(LongArray<V> array) Set the internal LongArray.ModifierConstructorDescriptionConstruct a LongArray that converts the values from typeF
to typeT
.CopyOnWriteLongArray
(LongArray<V> array) Construct a CopyOnWriteLongArray, initialized with the contents of the specified LongArray.ReadHeavyLongArray
(LongArray<V> delegate) Construct a ReadHeavyLongArray around the specified delegate.protected
SafeIterator
(LongArray<V> delegate, boolean fForward, long lIndexFrom) SafeLongArray
(LongArray<V> laDelegate) Construct a new SafeLongArray around the specified delegate.ModifierConstructorDescriptionCopyOnWriteLongArray
(Class<? extends LongArray<V>> clazz) Construct a CopyOnWriteLongArray with an underlying array of the specified type.