Package org.infinispan.container.offheap
Class OffHeapDataContainer
java.lang.Object
org.infinispan.container.impl.AbstractInternalDataContainer<WrappedBytes,WrappedBytes>
org.infinispan.container.offheap.OffHeapDataContainer
- All Implemented Interfaces:
Iterable<InternalCacheEntry<WrappedBytes,
,WrappedBytes>> DataContainer<WrappedBytes,
,WrappedBytes> InternalDataContainer<WrappedBytes,
WrappedBytes>
- Since:
- 9.4
- Author:
- wburns
-
Nested Class Summary
Nested classes/interfaces inherited from class org.infinispan.container.impl.AbstractInternalDataContainer
AbstractInternalDataContainer.EntryIterator
Nested classes/interfaces inherited from interface org.infinispan.container.DataContainer
DataContainer.ComputeAction<K,
V> -
Field Summary
Fields inherited from class org.infinispan.container.impl.AbstractInternalDataContainer
configuration, entryFactory, evictionManager, expirationManager, keyPartitioner, listeners, orderer, passivator, timeService
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addSegments
(IntSet segments) Sets what segments this data container should be using.void
clear()
Removes all entries in the containervoid
forEachSegment
(ObjIntConsumer<PeekableTouchableMap<WrappedBytes, WrappedBytes>> segmentMapConsumer) Performs the given consumer for each map inside this container, once for each segment until all maps have been processed or the action throws an exception.protected PeekableTouchableMap
<WrappedBytes, WrappedBytes> getMapForSegment
(int segment) protected int
getSegmentForKey
(Object key) iterator()
Same asDataContainer.iterator()
except that only entries that map to the provided segments are returned via the iterator.Same asDataContainer.iterator()
except that is also returns expired entries.iteratorIncludingExpired
(IntSet segments) Same asDataContainer.iteratorIncludingExpired()
except that only entries that map to the provided segments are returned via the iterator.void
removeSegments
(IntSet segments) Removes and un-associates the given segments.int
spliterator
(IntSet segments) Same asDataContainer.spliterator()
except that only entries that map to the provided segments are returned via this spliterator.Same asDataContainer.spliterator()
except that is also returns expired entries.spliteratorIncludingExpired
(IntSet segments) Same asDataContainer.spliteratorIncludingExpired()
except that only entries that map to the provided segments are returned via this spliterator.void
start()
void
stop()
Methods inherited from class org.infinispan.container.impl.AbstractInternalDataContainer
addRemovalListener, applyListener, clear, compute, compute, computeEntryRemoved, computeEntryWritten, containsKey, containsKey, entryAdded, entryRemoved, entryUpdated, evict, evict, expiredIterationPredicate, filterExpiredEntries, get, get, handleEviction, hasExpirable, peek, peek, put, put, putEntryInMap, remove, remove, removeEntryInMap, removeRemovalListener, segmentRemoved, touch
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.infinispan.container.DataContainer
capacity, evictionSize, resize, size
Methods inherited from interface org.infinispan.container.impl.InternalDataContainer
cleanUp, forEach, publisher, publisher, size, sizeIncludingExpired
-
Field Details
-
allocator
-
offHeapEntryFactory
-
-
Constructor Details
-
OffHeapDataContainer
public OffHeapDataContainer()
-
-
Method Details
-
start
public void start() -
stop
public void stop() -
getMapForSegment
- Specified by:
getMapForSegment
in classAbstractInternalDataContainer<WrappedBytes,
WrappedBytes>
-
getSegmentForKey
- Specified by:
getSegmentForKey
in classAbstractInternalDataContainer<WrappedBytes,
WrappedBytes>
-
spliterator
Description copied from interface:DataContainer
This spliterator only returns entries that are not expired, however it will not remove them while doing so.
- Returns:
- spliterator that doesn't produce expired entries
-
spliterator
Description copied from interface:InternalDataContainer
Same asDataContainer.spliterator()
except that only entries that map to the provided segments are returned via this spliterator. The spliterator will not return expired entries.- Parameters:
segments
- segments of entries to return- Returns:
- spliterator containing entries mapping to those segments that aren't expired
-
spliteratorIncludingExpired
Description copied from interface:DataContainer
Same asDataContainer.spliterator()
except that is also returns expired entries.- Returns:
- spliterator that returns all entries including expired ones
-
spliteratorIncludingExpired
public Spliterator<InternalCacheEntry<WrappedBytes,WrappedBytes>> spliteratorIncludingExpired(IntSet segments) Description copied from interface:InternalDataContainer
Same asDataContainer.spliteratorIncludingExpired()
except that only entries that map to the provided segments are returned via this spliterator. The spliterator will return expired entries as well.- Parameters:
segments
- segments of entries to use- Returns:
- spliterator containing entries mapping to those segments that could be expired
-
iterator
Description copied from interface:DataContainer
This iterator only returns entries that are not expired, however it will not remove them while doing so.
- Returns:
- iterator that doesn't produce expired entries
-
iterator
Description copied from interface:InternalDataContainer
Same asDataContainer.iterator()
except that only entries that map to the provided segments are returned via the iterator. The iterator will not return expired entries.- Parameters:
segments
- segments of entries to use- Returns:
- iterator that returns all entries mapped to the given segments
-
iteratorIncludingExpired
Description copied from interface:DataContainer
Same asDataContainer.iterator()
except that is also returns expired entries.- Returns:
- iterator that returns all entries including expired ones
-
iteratorIncludingExpired
public Iterator<InternalCacheEntry<WrappedBytes,WrappedBytes>> iteratorIncludingExpired(IntSet segments) Description copied from interface:InternalDataContainer
Same asDataContainer.iteratorIncludingExpired()
except that only entries that map to the provided segments are returned via the iterator. The iterator can return expired entries.- Parameters:
segments
- segments of entries to use- Returns:
- iterator that returns all entries mapped to the given segments that could be expired
-
addSegments
Description copied from interface:InternalDataContainer
Sets what segments this data container should be using. Already associated segments are unaffected by this and takes a union of existing and new segments.- Parameters:
segments
- segments to associate with this container
-
removeSegments
Description copied from interface:InternalDataContainer
Removes and un-associates the given segments. This will notify any listeners registered viaInternalDataContainer.addRemovalListener(Consumer)
of entries that were removed due to no longer being associated with this container. There is no guarantee if the consumer is invoked once or multiple times for a given group of segments and could be in any order.When this method is invoked an implementation is free to remove any entries that don't map to segments currently associated with this container. Note that entries that were removed due to their segments never being associated with this container do not notify listeners registered via
InternalDataContainer.addRemovalListener(Consumer)
.- Parameters:
segments
- segments that should no longer be associated with this container
-
sizeIncludingExpired
public int sizeIncludingExpired()- Returns:
- count of the number of entries in the container including expired entries
-
clear
public void clear()Description copied from interface:DataContainer
Removes all entries in the container -
forEachSegment
public void forEachSegment(ObjIntConsumer<PeekableTouchableMap<WrappedBytes, WrappedBytes>> segmentMapConsumer) Description copied from interface:InternalDataContainer
Performs the given consumer for each map inside this container, once for each segment until all maps have been processed or the action throws an exception. Exceptions thrown by the action are relayed to the caller. The consumer will be provided with the segment as well that maps to the given segment.- Parameters:
segmentMapConsumer
- The action to be performed for each element map
-