Uses of Interface
org.infinispan.container.impl.InternalDataContainer
-
Packages that use InternalDataContainer Package Description org.infinispan.container.entries Entries which are stored in data containers.org.infinispan.container.impl Data containers which store cache entries.org.infinispan.container.offheap org.infinispan.expiration.impl org.infinispan.factories Factories are internal components used to create other components based on a cache's configuration.org.infinispan.interceptors.distribution Interceptors dealing with command replication in distributed/replicated mode.org.infinispan.interceptors.impl Basic interceptorsorg.infinispan.interceptors.locking Interceptors dealing with locking.org.infinispan.statetransfer Transfer of state to new caches in a cluster.org.infinispan.stream.impl.local -
-
Uses of InternalDataContainer in org.infinispan.container.entries
Methods in org.infinispan.container.entries with parameters of type InternalDataContainer Modifier and Type Method Description CompletionStage<Void>ReadCommittedEntry. commit(int segment, InternalDataContainer container) -
Uses of InternalDataContainer in org.infinispan.container.impl
Classes in org.infinispan.container.impl that implement InternalDataContainer Modifier and Type Class Description classAbstractDelegatingInternalDataContainer<K,V>Delegating data container that delegates all calls to the container returned fromAbstractDelegatingInternalDataContainer.delegate()classAbstractInternalDataContainer<K,V>Abstract class implemenation for a segmented data container.classBoundedSegmentedDataContainer<K,V>Bounded implementation of segmented data container.classDefaultDataContainer<K,V>DefaultDataContainer is both eviction and non-eviction based data container.classDefaultSegmentedDataContainer<K,V>DataContainer implementation that internally stores entries in an array of maps.classL1SegmentedDataContainer<K,V>Segmented data container that also allows for non owned segments to be written to a temporary map (L1).Methods in org.infinispan.container.impl that return InternalDataContainer Modifier and Type Method Description protected abstract InternalDataContainer<K,V>AbstractDelegatingInternalDataContainer. delegate() -
Uses of InternalDataContainer in org.infinispan.container.offheap
Classes in org.infinispan.container.offheap that implement InternalDataContainer Modifier and Type Class Description classBoundedOffHeapDataContainerclassOffHeapDataContainerclassSegmentedBoundedOffHeapDataContainerMethods in org.infinispan.container.offheap that return InternalDataContainer Modifier and Type Method Description protected InternalDataContainer<org.infinispan.commons.marshall.WrappedBytes,org.infinispan.commons.marshall.WrappedBytes>SegmentedBoundedOffHeapDataContainer. delegate() -
Uses of InternalDataContainer in org.infinispan.expiration.impl
Fields in org.infinispan.expiration.impl with type parameters of type InternalDataContainer Modifier and Type Field Description protected ComponentRef<InternalDataContainer<K,V>>ExpirationManagerImpl. dataContainer -
Uses of InternalDataContainer in org.infinispan.factories
Methods in org.infinispan.factories that return types with arguments of type InternalDataContainer Modifier and Type Method Description ComponentRef<InternalDataContainer>ComponentRegistry. getInternalDataContainer() -
Uses of InternalDataContainer in org.infinispan.interceptors.distribution
Fields in org.infinispan.interceptors.distribution declared as InternalDataContainer Modifier and Type Field Description protected InternalDataContainerL1NonTxInterceptor. dataContainerConstructors in org.infinispan.interceptors.distribution with parameters of type InternalDataContainer Constructor Description L1WriteSynchronizer(InternalDataContainer dc, long l1Lifespan, StateTransferLock stateTransferLock, ClusteringDependentLogic cdl) -
Uses of InternalDataContainer in org.infinispan.interceptors.impl
Fields in org.infinispan.interceptors.impl declared as InternalDataContainer Modifier and Type Field Description protected InternalDataContainerClusteringInterceptor. dataContainerprotected InternalDataContainerPrefetchInterceptor. dataContainerMethods in org.infinispan.interceptors.impl with parameters of type InternalDataContainer Modifier and Type Method Description voidTransactionalExceptionEvictionInterceptor. inject(Configuration config, InternalDataContainer<Object,Object> dataContainer, KeyValueMetadataSizeCalculator<Object,Object> calculator, DistributionManager dm, InternalExpirationManager<Object,Object> expirationManager) -
Uses of InternalDataContainer in org.infinispan.interceptors.locking
Fields in org.infinispan.interceptors.locking declared as InternalDataContainer Modifier and Type Field Description protected InternalDataContainer<Object,Object>ClusteringDependentLogic.AbstractClusteringDependentLogic. dataContainer -
Uses of InternalDataContainer in org.infinispan.statetransfer
Fields in org.infinispan.statetransfer declared as InternalDataContainer Modifier and Type Field Description protected InternalDataContainer<Object,Object>StateConsumerImpl. dataContainerprotected InternalDataContainer<Object,Object>StateProviderImpl. dataContainer -
Uses of InternalDataContainer in org.infinispan.stream.impl.local
Constructors in org.infinispan.stream.impl.local with parameters of type InternalDataContainer Constructor Description SegmentedEntryStreamSupplier(Cache<K,V> cache, ToIntFunction<Object> toIntFunction, InternalDataContainer<K,V> internalDataContainer)SegmentedKeyStreamSupplier(Cache<K,V> cache, ToIntFunction<Object> toIntFunction, InternalDataContainer<K,V> internalDataContainer)
-