Class AbstractSegmentedAdvancedLoadWriteStore<K,V>

java.lang.Object
org.infinispan.persistence.support.AbstractSegmentedAdvancedLoadWriteStore<K,V>
All Implemented Interfaces:
Lifecycle, AdvancedCacheExpirationWriter<K,V>, AdvancedCacheLoader<K,V>, AdvancedCacheWriter<K,V>, AdvancedLoadWriteStore<K,V>, CacheLoader<K,V>, CacheWriter<K,V>, ExternalStore<K,V>, SegmentedAdvancedLoadWriteStore<K,V>
Direct Known Subclasses:
ComposedSegmentedLoadWriteStore

public abstract class AbstractSegmentedAdvancedLoadWriteStore<K,V> extends Object implements SegmentedAdvancedLoadWriteStore<K,V>
Abstract segment loader writer that implements all the single key non segmented methods by invoking the segmented equivalent by passing in the segment returned from invoking getKeyMapper(). These methods are also all declared final as to make sure the end user does not implement the incorrect method. All other methods must be implemented as normal.
Since:
9.4
Author:
wburns