Package com.tangosol.util
Class MultiBinaryLongMap.AbstractDelegateBinaryLongMap
java.lang.Object
com.tangosol.util.MultiBinaryLongMap.AbstractDelegateBinaryLongMap
- All Implemented Interfaces:
BinaryLongMap
- Direct Known Subclasses:
MultiBinaryLongMap.DelegatingBinaryLongMap
,MultiBinaryLongMap.PrimaryBinaryLongMap.DelegatingPrimaryBinaryLongMap
- Enclosing class:
MultiBinaryLongMap
public abstract static class MultiBinaryLongMap.AbstractDelegateBinaryLongMap
extends Object
implements BinaryLongMap
Abstract base class for BinaryLongMap implementations that delegate the
key and value storage to the MultiBinaryLongMap.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected class
DelegateEntryVisitor is a wrapper for an EntryVisitor that exposes the logical entries of this AbstractDelegateBinaryLongMap.Nested classes/interfaces inherited from interface com.tangosol.util.BinaryLongMap
BinaryLongMap.Entry, BinaryLongMap.EntryVisitor, BinaryLongMap.SimpleMapImpl
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final BinaryLongMap
The BinaryLongMap to delegate storage of this BinaryLongMap's keys to.protected final MultiBinaryLongMap.LongStorage
The LongStorage to delegate storage of this BinaryLongMap's values to.protected int
The index into the LongStorage. -
Constructor Summary
ConstructorsConstructorDescriptionAbstractDelegateBinaryLongMap
(BinaryLongMap blm, MultiBinaryLongMap.LongStorage store, int iIndex) Construct an AbstractDelegateBinaryLongMap based on the specified key tree, long storage, and storage index. -
Method Summary
Modifier and TypeMethodDescriptionlong
Find the specified key in the map and return the value associated with it.protected int
getIndex()
Determine the index into the LongStorage that this DelegatingBinaryLongMap is assigned.protected int
Return the slot index associated with the specified key.void
internKeys
(Object o) Internal opaque method: De-duplicate keys.keys()
Obtain an iterator of the keys stored in the map.keys
(Predicate<BinaryLongMap.Entry> predicate) Obtain an iterator of the keys stored in the map whose correspondingEntry
matches the passedPredicate<Entry>
.protected void
setIndex
(int iIndex) Set the index into the LongStorage assigned to this DelegatingBinaryLongMap.protected boolean
updateValue
(int iSlot, long lValueOld, long lValueNew, boolean fForce) Associate the passed value with the specified key, optionally performing the operation only if the value currently associated with the key matches the passed "old" value.void
visit
(Binary binKey, BinaryLongMap.EntryVisitor visitor) Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added.void
visitAll
(BinaryLongMap.EntryVisitor visitor) Apply the specified visitor to all entries in the BinaryLongMap.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.tangosol.util.BinaryLongMap
clear, put, putIfAbsent, remove, remove, replace, size
-
Field Details
-
f_blm
The BinaryLongMap to delegate storage of this BinaryLongMap's keys to. -
f_store
The LongStorage to delegate storage of this BinaryLongMap's values to. -
m_iIndex
protected int m_iIndexThe index into the LongStorage.
-
-
Constructor Details
-
AbstractDelegateBinaryLongMap
public AbstractDelegateBinaryLongMap(BinaryLongMap blm, MultiBinaryLongMap.LongStorage store, int iIndex) Construct an AbstractDelegateBinaryLongMap based on the specified key tree, long storage, and storage index.- Parameters:
blm
- the BinaryLongMap holding the keysstore
- the long storageiIndex
- the storage index
-
-
Method Details
-
get
Find the specified key in the map and return the value associated with it.- Specified by:
get
in interfaceBinaryLongMap
- Parameters:
binKey
- a Binary key- Returns:
- the value associated with the specified key, or 0L if the specified key is not in the map
-
internKeys
Internal opaque method: De-duplicate keys.- Specified by:
internKeys
in interfaceBinaryLongMap
- Parameters:
o
- some implementation-specific object
-
keys
Obtain an iterator of the keys stored in the map.- Specified by:
keys
in interfaceBinaryLongMap
- Returns:
- an Iterator of Binary keys
-
keys
Obtain an iterator of the keys stored in the map whose correspondingEntry
matches the passedPredicate<Entry>
.The entry passed to the predicate should be treated as read-only, and any attempt to modify the entry may have undefined behavior and/or throw an Exception. Modifications to entries should instead be performed using an
BinaryLongMap.EntryVisitor
via theBinaryLongMap.visit(com.tangosol.util.Binary, com.tangosol.util.BinaryLongMap.EntryVisitor)
orBinaryLongMap.visitAll(com.tangosol.util.BinaryLongMap.EntryVisitor)
methods.- Specified by:
keys
in interfaceBinaryLongMap
- Parameters:
predicate
- a Predicate<Entry> to apply to each Entry- Returns:
- an Iterator of Binary keys
-
visit
Apply the specified visitor to the entry associated with the specified key, if the entry exists or may be added. The visited entry may or may not logically exist in the BinaryLongMap (e.g. it may be associated with a value of 0L) but is guaranteed to be safe to be added or removed (viaBinaryLongMap.Entry.setValue(long)
).- Specified by:
visit
in interfaceBinaryLongMap
- Parameters:
binKey
- the key to visitvisitor
- the visitor to apply
-
visitAll
Apply the specified visitor to all entries in the BinaryLongMap.- Specified by:
visitAll
in interfaceBinaryLongMap
- Parameters:
visitor
- the visitor to apply
-
getIndex
protected int getIndex()Determine the index into the LongStorage that this DelegatingBinaryLongMap is assigned.- Returns:
- the index into the LongStorage
-
setIndex
protected void setIndex(int iIndex) Set the index into the LongStorage assigned to this DelegatingBinaryLongMap.- Parameters:
iIndex
- the index into the LongStorage
-
getSlot
Return the slot index associated with the specified key.- Parameters:
binKey
- the key to return the slot for- Returns:
- the slot index associated with the specified key
-
updateValue
protected boolean updateValue(int iSlot, long lValueOld, long lValueNew, boolean fForce) Associate the passed value with the specified key, optionally performing the operation only if the value currently associated with the key matches the passed "old" value.- Parameters:
iSlot
- the slot whose value to updatelValueOld
- the value that is assumed to be currently associated with the keylValueNew
- the value to associate with the keyfForce
- true iff the value should be associated regardless of the old value- Returns:
- if fForce is true, then the return value is true iff an item was added as the result of this operation; if fForce is false, then the return value is true iff the operation affected a change to the BinaryLongMap
-