Package | Description |
---|---|
org.infinispan.distexec.mapreduce | |
org.infinispan.lucene.cacheloader | |
org.infinispan.marshall.core | |
org.infinispan.persistence.async | |
org.infinispan.persistence.cli | |
org.infinispan.persistence.cluster |
A
CacheLoader (not CacheStore ) that polls other nodes in the cluster for state. |
org.infinispan.persistence.file |
Simple filesystem-based
CacheStore implementation. |
org.infinispan.persistence.jdbc.binary |
This JDBC CacheStore implementation is optimized for storing binary (non-String)
keys in the cache.
|
org.infinispan.persistence.jdbc.mixed |
This is a delegating CacheStore implementation that delegates either to a binary
or String based JDBC cache store depending on the key used.
|
org.infinispan.persistence.jdbc.stringbased |
This JDBC CacheStore implementation is optimized for storing String
keys in the cache.
|
org.infinispan.persistence.manager | |
org.infinispan.persistence.modifications |
Modifications that are used to encapsulate cache operations for application to a
CacheStore . |
org.infinispan.persistence.remote | |
org.infinispan.persistence.spi | |
org.infinispan.persistence.support |
Modifier and Type | Method and Description |
---|---|
void |
MapReduceCacheLoaderTask.processEntry(MarshalledEntry marshalledEntry,
AdvancedCacheLoader.TaskContext taskContext) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
LuceneCacheLoader.load(Object key) |
Modifier and Type | Class and Description |
---|---|
class |
MarshalledEntryImpl<K,V> |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry<K,V> |
MarshalledEntryFactory.newMarshalledEntry(ByteBuffer key,
ByteBuffer valueBytes,
ByteBuffer metadataBytes) |
MarshalledEntry |
MarshalledEntryFactoryImpl.newMarshalledEntry(ByteBuffer key,
ByteBuffer valueBytes,
ByteBuffer metadataBytes) |
MarshalledEntry<K,V> |
MarshalledEntryFactory.newMarshalledEntry(Object key,
ByteBuffer valueBytes,
ByteBuffer metadataBytes) |
MarshalledEntry |
MarshalledEntryFactoryImpl.newMarshalledEntry(Object key,
ByteBuffer valueBytes,
ByteBuffer metadataBytes) |
MarshalledEntry<K,V> |
MarshalledEntryFactory.newMarshalledEntry(Object key,
Object value,
InternalMetadata im) |
MarshalledEntry |
MarshalledEntryFactoryImpl.newMarshalledEntry(Object key,
Object value,
InternalMetadata im) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
AsyncCacheLoader.load(Object key) |
Modifier and Type | Method and Description |
---|---|
void |
AsyncCacheWriter.write(MarshalledEntry entry) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry<K,V> |
CLInterfaceLoader.load(K key) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
ClusterLoader.load(Object key) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
SingleFileStore.load(Object key) |
Modifier and Type | Method and Description |
---|---|
void |
SingleFileStore.write(MarshalledEntry marshalledEntry) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
JdbcBinaryStore.load(Object key) |
Modifier and Type | Method and Description |
---|---|
protected void |
JdbcBinaryStore.storeInBucket(MarshalledEntry me,
Integer bucketId) |
void |
JdbcBinaryStore.write(MarshalledEntry entry) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
JdbcMixedStore.load(Object key) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcMixedStore.write(MarshalledEntry ed) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
JdbcStringBasedStore.load(Object key) |
Modifier and Type | Method and Description |
---|---|
void |
JdbcStringBasedStore.write(MarshalledEntry entry) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
PersistenceManager.loadFromAllStores(Object key,
InvocationContext context) |
MarshalledEntry |
PersistenceManagerImpl.loadFromAllStores(Object key,
InvocationContext context) |
Modifier and Type | Method and Description |
---|---|
void |
PersistenceManager.writeToAllStores(MarshalledEntry marshalledEntry,
boolean skipSharedStores) |
void |
PersistenceManagerImpl.writeToAllStores(MarshalledEntry marshalledEntry,
boolean skipSharedStores) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
Store.getStoredValue() |
Constructor and Description |
---|
Store(Object key,
MarshalledEntry storedValue) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
RemoteStore.load(Object key) |
Modifier and Type | Method and Description |
---|---|
void |
RemoteStore.write(MarshalledEntry entry) |
Modifier and Type | Method and Description |
---|---|
MarshalledEntry<K,V> |
CacheLoader.load(K key)
Fetches an entry from the storage.
|
Modifier and Type | Method and Description |
---|---|
void |
AdvancedCacheLoader.CacheLoaderTask.processEntry(MarshalledEntry<K,V> marshalledEntry,
AdvancedCacheLoader.TaskContext taskContext) |
void |
CacheWriter.write(MarshalledEntry<K,V> entry)
Persists the entry to the storage.
|
Modifier and Type | Method and Description |
---|---|
MarshalledEntry |
Bucket.getEntry(Object key,
TimeService timeService) |
MarshalledEntry |
DelegatingCacheLoader.load(Object key) |
Modifier and Type | Method and Description |
---|---|
Map<Object,MarshalledEntry> |
Bucket.getStoredEntries() |
Map<Object,MarshalledEntry> |
Bucket.getStoredEntries(AdvancedCacheLoader.KeyFilter filter,
TimeService timeService) |
Modifier and Type | Method and Description |
---|---|
void |
Bucket.addEntry(Object key,
MarshalledEntry sv) |
void |
SingletonCacheWriter.write(MarshalledEntry entry) |
void |
DelegatingCacheWriter.write(MarshalledEntry entry) |
Constructor and Description |
---|
Bucket(Map<Object,MarshalledEntry> entries,
Equivalence<Object> keyEquivalence) |
Copyright © 2016 JBoss, a division of Red Hat. All rights reserved.