Package | Description |
---|---|
org.infinispan.loaders |
This package contains loaders and stores, which are used for overflow or persistence.
|
org.infinispan.loaders.bucket |
Abstract classes that use hashed buckets to store entries.
|
org.infinispan.loaders.decorators |
This package contains loaders and stores, which are used for overflow or persistence.
|
org.infinispan.loaders.file |
Simple filesystem-based
CacheStore implementation. |
org.infinispan.statetransfer |
Transfer of state to new caches in a cluster.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractCacheStore
An abstract
CacheStore that holds common implementations for some methods |
class |
LockSupportCacheStore<L>
This class extends
AbstractCacheStore adding lock support for consistently accessing stored data. |
Modifier and Type | Method and Description |
---|---|
CacheStore |
CacheLoaderManagerImpl.getCacheStore() |
CacheStore |
CacheLoaderManager.getCacheStore() |
Modifier and Type | Class and Description |
---|---|
class |
BucketBasedCacheStore
Base class for CacheStore implementations that combine entries into buckets when storing data.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDelegatingStore
Simple delegate that delegates all calls.
|
class |
AsyncStore
The AsyncStore is a delegating CacheStore that extends AbstractDelegatingStore, overriding methods to that should not
just delegate the operation to the underlying store.
|
class |
ChainingCacheStore
A chaining cache loader that allows us to configure > 1 cache loader.
|
class |
ReadOnlyStore
A decorator that makes the underlying store a
CacheLoader , i.e., suppressing all write
methods. |
class |
SingletonStore
SingletonStore is a delegating cache store used for situations when only one instance should interact with the
underlying store.
|
Modifier and Type | Method and Description |
---|---|
CacheStore |
AbstractDelegatingStore.getDelegate() |
Modifier and Type | Method and Description |
---|---|
LinkedHashMap<CacheStore,CacheLoaderConfig> |
ChainingCacheStore.getStores() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractDelegatingStore.setDelegate(CacheStore delegate) |
Constructor and Description |
---|
AbstractDelegatingStore(CacheStore delegate) |
AsyncStore(CacheStore delegate,
AsyncStoreConfig asyncStoreConfig) |
ReadOnlyStore(CacheStore delegate) |
SingletonStore(CacheStore delegate,
Cache<Object,Object> cache,
SingletonStoreConfig config) |
Modifier and Type | Class and Description |
---|---|
class |
FileCacheStore
A filesystem-based implementation of a
BucketBasedCacheStore . |
Modifier and Type | Method and Description |
---|---|
CacheStore |
ReplicatedStateTransferManagerImpl.getCacheStoreForStateTransfer() |
CacheStore |
DummyInvalidationStateTransferManagerImpl.getCacheStoreForStateTransfer()
Deprecated.
|
CacheStore |
DistributedStateTransferManagerImpl.getCacheStoreForStateTransfer() |
abstract CacheStore |
BaseStateTransferManagerImpl.getCacheStoreForStateTransfer() |
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.