|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Marshaller | |
---|---|
org.infinispan | This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform. |
org.infinispan.interceptors | Infinispan is designed around a set of interceptors around a data container. |
org.infinispan.loaders | This package contains loaders and stores, which are used for overflow or persistence. |
org.infinispan.loaders.bdbje | This package contains a CacheStore implementation based on
Oracle's BDBJE storage engine. |
org.infinispan.loaders.cluster | |
org.infinispan.loaders.decorators | This package contains loaders and stores, which are used for overflow or persistence. |
org.infinispan.loaders.file | |
org.infinispan.loaders.jdbc | This package contains a CacheStore implementation based on
a JDBC database connection. |
org.infinispan.loaders.jdbc.binary | This JDBC CacheStore implementation is optimized for storing binary (non-String) keys in the cache. |
org.infinispan.loaders.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.loaders.jdbc.stringbased | This JDBC CacheStore implementation is optimized for storing String keys in the cache. |
org.infinispan.loaders.jdbm | This package contains a CacheStore implementation based on
persisting to JDBM. |
org.infinispan.loaders.s3 | This package contains a CacheStore implementation based on
persisting to Amazon's S3 service. |
org.infinispan.loaders.s3.jclouds | A bridge between Infinispan and JClouds - a fast S3 communication library. |
org.infinispan.marshall | Infinispan makes use of custom marshalling to serialize and deserialize state wherever possible, rather than falling back to the JDK to do this. |
org.infinispan.marshall.jboss | |
org.infinispan.remoting.transport | |
org.infinispan.remoting.transport.jgroups | |
org.infinispan.statetransfer | Transfer of state to new caches in a cluster. |
org.infinispan.transaction | JTA transaction support. |
Uses of Marshaller in org.infinispan |
---|
Fields in org.infinispan declared as Marshaller | |
---|---|
protected Marshaller |
CacheDelegate.marshaller
|
Methods in org.infinispan with parameters of type Marshaller | |
---|---|
void |
CacheDelegate.injectDependencies(EvictionManager evictionManager,
InvocationContextContainer icc,
CommandsFactory commandsFactory,
InterceptorChain interceptorChain,
Configuration configuration,
CacheNotifier notifier,
ComponentRegistry componentRegistry,
TransactionManager transactionManager,
BatchContainer batchContainer,
RpcManager rpcManager,
DataContainer dataContainer,
Marshaller marshaller,
ResponseGenerator responseGenerator,
CacheManager cacheManager,
StateTransferManager stateTransferManager)
|
Uses of Marshaller in org.infinispan.interceptors |
---|
Methods in org.infinispan.interceptors with parameters of type Marshaller | |
---|---|
protected void |
MarshalledValueInterceptor.injectMarshaller(Marshaller marshaller)
|
Uses of Marshaller in org.infinispan.loaders |
---|
Fields in org.infinispan.loaders declared as Marshaller | |
---|---|
protected Marshaller |
AbstractCacheStore.marshaller
|
Methods in org.infinispan.loaders that return Marshaller | |
---|---|
protected Marshaller |
AbstractCacheStore.getMarshaller()
|
Methods in org.infinispan.loaders with parameters of type Marshaller | |
---|---|
void |
LockSupportCacheStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
void |
CacheLoader.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
Used to initialize a cache loader. |
void |
AbstractCacheStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
void |
CacheLoaderManagerImpl.inject(Cache cache,
Marshaller marshaller,
Configuration configuration)
|
Uses of Marshaller in org.infinispan.loaders.bdbje |
---|
Methods in org.infinispan.loaders.bdbje with parameters of type Marshaller | |
---|---|
com.sleepycat.collections.StoredMap<Object,InternalCacheEntry> |
BdbjeResourceFactory.createStoredMapViewOfDatabase(com.sleepycat.je.Database database,
com.sleepycat.bind.serial.StoredClassCatalog classCatalog,
Marshaller m)
create a StoredMap persisted by the database |
com.sleepycat.collections.StoredSortedMap<Long,Object> |
BdbjeResourceFactory.createStoredSortedMapForKeyExpiry(com.sleepycat.je.Database database,
com.sleepycat.bind.serial.StoredClassCatalog classCatalog,
Marshaller marshaller)
create a StoredMap persisted by the database |
void |
BdbjeCacheStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
Used to initialize a cache loader. |
Uses of Marshaller in org.infinispan.loaders.cluster |
---|
Methods in org.infinispan.loaders.cluster with parameters of type Marshaller | |
---|---|
void |
ClusterCacheLoader.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
Uses of Marshaller in org.infinispan.loaders.decorators |
---|
Methods in org.infinispan.loaders.decorators with parameters of type Marshaller | |
---|---|
void |
ChainingCacheStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
void |
AsyncStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
void |
AbstractDelegatingStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
Uses of Marshaller in org.infinispan.loaders.file |
---|
Methods in org.infinispan.loaders.file with parameters of type Marshaller | |
---|---|
void |
FileCacheStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
Uses of Marshaller in org.infinispan.loaders.jdbc |
---|
Fields in org.infinispan.loaders.jdbc declared as Marshaller | |
---|---|
protected Marshaller |
DataManiulationHelper.marshaller
|
Methods in org.infinispan.loaders.jdbc with parameters of type Marshaller | |
---|---|
static ByteBuffer |
JdbcUtil.marshall(Marshaller marshaller,
Object bucket)
|
static Object |
JdbcUtil.unmarshall(Marshaller marshaller,
InputStream inputStream)
|
Constructors in org.infinispan.loaders.jdbc with parameters of type Marshaller | |
---|---|
DataManiulationHelper(ConnectionFactory connectionFactory,
TableManipulation tableManipulation,
Marshaller marshaller)
|
Uses of Marshaller in org.infinispan.loaders.jdbc.binary |
---|
Methods in org.infinispan.loaders.jdbc.binary with parameters of type Marshaller | |
---|---|
void |
JdbcBinaryCacheStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
Uses of Marshaller in org.infinispan.loaders.jdbc.mixed |
---|
Methods in org.infinispan.loaders.jdbc.mixed with parameters of type Marshaller | |
---|---|
void |
JdbcMixedCacheStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
Uses of Marshaller in org.infinispan.loaders.jdbc.stringbased |
---|
Methods in org.infinispan.loaders.jdbc.stringbased with parameters of type Marshaller | |
---|---|
void |
JdbcStringBasedCacheStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m)
|
Uses of Marshaller in org.infinispan.loaders.jdbm |
---|
Methods in org.infinispan.loaders.jdbm with parameters of type Marshaller | |
---|---|
void |
JdbmCacheStore.init(CacheLoaderConfig clc,
Cache cache,
Marshaller m)
|
Constructors in org.infinispan.loaders.jdbm with parameters of type Marshaller | |
---|---|
JdbmSerializer(Marshaller marshaller)
Constructs a new JdbmSerializer. |
Uses of Marshaller in org.infinispan.loaders.s3 |
---|
Methods in org.infinispan.loaders.s3 with parameters of type Marshaller | |
---|---|
void |
S3Connection.connect(S3CacheStoreConfig config,
Marshaller m)
|
void |
S3CacheStore.init(CacheLoaderConfig cfg,
Cache cache,
Marshaller m)
Used to initialize a cache loader. |
void |
S3CacheStore.init(CacheLoaderConfig config,
Cache cache,
Marshaller m,
S3Connection connection,
S3Bucket bucket)
|
Uses of Marshaller in org.infinispan.loaders.s3.jclouds |
---|
Fields in org.infinispan.loaders.s3.jclouds declared as Marshaller | |
---|---|
protected Marshaller |
JCloudsConnection.marshaller
|
Methods in org.infinispan.loaders.s3.jclouds with parameters of type Marshaller | |
---|---|
void |
JCloudsConnection.connect(S3CacheStoreConfig config,
Marshaller m)
|
Uses of Marshaller in org.infinispan.marshall |
---|
Classes in org.infinispan.marshall that implement Marshaller | |
---|---|
class |
AbstractMarshaller
Abstract marshaller |
class |
VersionAwareMarshaller
A delegate to various other marshallers like JBossMarshaller . |
Methods in org.infinispan.marshall with parameters of type Marshaller | |
---|---|
void |
MarshalledValue.Externalizer.inject(Marshaller marshaller)
|
Constructors in org.infinispan.marshall with parameters of type Marshaller | |
---|---|
MarshalledValue(byte[] raw,
int cachedHashCode,
Marshaller marshaller)
|
|
MarshalledValue(Object instance,
boolean equalityPreferenceForInstance,
Marshaller marshaller)
|
Uses of Marshaller in org.infinispan.marshall.jboss |
---|
Classes in org.infinispan.marshall.jboss that implement Marshaller | |
---|---|
class |
JBossMarshaller
JBossMarshaller. |
Methods in org.infinispan.marshall.jboss with parameters of type Marshaller | |
---|---|
void |
JBossMarshaller.start(ClassLoader defaultCl,
RemoteCommandFactory cmdFactory,
Marshaller ispnMarshaller)
|
void |
ConstantObjectTable.start(RemoteCommandFactory cmdFactory,
Marshaller ispnMarshaller)
|
Uses of Marshaller in org.infinispan.remoting.transport |
---|
Methods in org.infinispan.remoting.transport with parameters of type Marshaller | |
---|---|
void |
Transport.initialize(GlobalConfiguration c,
Marshaller marshaller,
ExecutorService asyncExecutor,
InboundInvocationHandler handler,
CacheManagerNotifier notifier)
Initializes the transport with global cache configuration and transport-specific properties. |
Uses of Marshaller in org.infinispan.remoting.transport.jgroups |
---|
Methods in org.infinispan.remoting.transport.jgroups with parameters of type Marshaller | |
---|---|
void |
JGroupsTransport.initialize(GlobalConfiguration c,
Marshaller marshaller,
ExecutorService asyncExecutor,
InboundInvocationHandler inboundInvocationHandler,
CacheManagerNotifier notifier)
|
Constructors in org.infinispan.remoting.transport.jgroups with parameters of type Marshaller | |
---|---|
MarshallerAdapter(Marshaller m)
|
Uses of Marshaller in org.infinispan.statetransfer |
---|
Methods in org.infinispan.statetransfer with parameters of type Marshaller | |
---|---|
void |
StateTransferManagerImpl.injectDependencies(RpcManager rpcManager,
AdvancedCache cache,
Configuration configuration,
DataContainer dataContainer,
CacheLoaderManager clm,
Marshaller marshaller,
TransactionLog transactionLog,
InterceptorChain interceptorChain,
InvocationContextContainer invocationContextContainer,
CommandsFactory commandsFactory,
TransactionTable txTable)
|
Uses of Marshaller in org.infinispan.transaction |
---|
Methods in org.infinispan.transaction with parameters of type Marshaller | |
---|---|
void |
TransactionLog.writeCommitLog(Marshaller marshaller,
ObjectOutput out)
|
void |
TransactionLog.writePendingPrepares(Marshaller marshaller,
ObjectOutput out)
|
|
Google Analytics | |||||||||
PREV NEXT | FRAMES NO FRAMES |