|
Infinispan Distribution 5.2.6.Final-redhat-2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use StreamingMarshaller | |
---|---|
org.infinispan | This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform. |
org.infinispan.factories | Factories are internal components used to create other components based on a cache's configuration. |
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.cluster | A CacheLoader (not CacheStore ) that polls other nodes in the cluster for state. |
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.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.keymappers | |
org.infinispan.loaders.remote | |
org.infinispan.lucene.cachestore | |
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 | Hooks to bridge Infinispan's marshalling APIs with JBoss Marshalling internals. |
org.infinispan.remoting.transport.jgroups | A transport implementation based on JGroups. |
Uses of StreamingMarshaller in org.infinispan |
---|
Fields in org.infinispan declared as StreamingMarshaller | |
---|---|
protected StreamingMarshaller |
CacheImpl.marshaller
|
Methods in org.infinispan with parameters of type StreamingMarshaller | |
---|---|
void |
CacheImpl.injectDependencies(EvictionManager evictionManager,
InvocationContextContainer icc,
CommandsFactory commandsFactory,
InterceptorChain interceptorChain,
Configuration configuration,
CacheNotifier notifier,
ComponentRegistry componentRegistry,
TransactionManager transactionManager,
BatchContainer batchContainer,
RpcManager rpcManager,
DataContainer dataContainer,
StreamingMarshaller marshaller,
ResponseGenerator responseGenerator,
DistributionManager distributionManager,
EmbeddedCacheManager cacheManager,
ExecutorService asyncExecutor,
TransactionTable txTable,
RecoveryManager recoveryManager,
TransactionCoordinator txCoordinator,
LockManager lockManager,
GlobalConfiguration globalCfg)
|
Uses of StreamingMarshaller in org.infinispan.factories |
---|
Methods in org.infinispan.factories that return StreamingMarshaller | |
---|---|
StreamingMarshaller |
ComponentRegistry.getCacheMarshaller()
Caching shortcut for #getComponent(StreamingMarshaller.class, KnownComponentNames.CACHE_MARSHALLER); |
Uses of StreamingMarshaller in org.infinispan.interceptors |
---|
Methods in org.infinispan.interceptors with parameters of type StreamingMarshaller | |
---|---|
protected void |
IsMarshallableInterceptor.injectMarshaller(StreamingMarshaller marshaller,
DistributionManager distManager)
|
protected void |
MarshalledValueInterceptor.injectMarshaller(StreamingMarshaller marshaller,
InternalEntryFactory entryFactory)
|
Uses of StreamingMarshaller in org.infinispan.loaders |
---|
Fields in org.infinispan.loaders declared as StreamingMarshaller | |
---|---|
protected StreamingMarshaller |
AbstractCacheLoader.marshaller
|
Methods in org.infinispan.loaders that return StreamingMarshaller | |
---|---|
protected StreamingMarshaller |
AbstractCacheStore.getMarshaller()
|
Methods in org.infinispan.loaders with parameters of type StreamingMarshaller | |
---|---|
void |
LockSupportCacheStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
void |
AbstractCacheLoader.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
void |
AbstractCacheStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
void |
CacheLoader.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
Used to initialize a cache loader. |
void |
CacheLoaderManagerImpl.inject(AdvancedCache<Object,Object> cache,
StreamingMarshaller marshaller,
Configuration configuration,
InvocationContextContainer icc,
TransactionManager transactionManager)
|
Uses of StreamingMarshaller in org.infinispan.loaders.cluster |
---|
Methods in org.infinispan.loaders.cluster with parameters of type StreamingMarshaller | |
---|---|
void |
ClusterCacheLoader.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
Uses of StreamingMarshaller in org.infinispan.loaders.decorators |
---|
Methods in org.infinispan.loaders.decorators with parameters of type StreamingMarshaller | |
---|---|
void |
AbstractDelegatingStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
void |
AsyncStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
void |
ChainingCacheStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
Uses of StreamingMarshaller in org.infinispan.loaders.file |
---|
Methods in org.infinispan.loaders.file with parameters of type StreamingMarshaller | |
---|---|
void |
FileCacheStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
Uses of StreamingMarshaller in org.infinispan.loaders.jdbc |
---|
Fields in org.infinispan.loaders.jdbc declared as StreamingMarshaller | |
---|---|
protected StreamingMarshaller |
DataManipulationHelper.marshaller
|
Methods in org.infinispan.loaders.jdbc with parameters of type StreamingMarshaller | |
---|---|
static ByteBuffer |
JdbcUtil.marshall(StreamingMarshaller marshaller,
Object bucket)
|
static Object |
JdbcUtil.unmarshall(StreamingMarshaller marshaller,
InputStream inputStream)
|
Constructors in org.infinispan.loaders.jdbc with parameters of type StreamingMarshaller | |
---|---|
DataManipulationHelper(ConnectionFactory connectionFactory,
TableManipulation tableManipulation,
StreamingMarshaller marshaller)
|
Uses of StreamingMarshaller in org.infinispan.loaders.jdbc.binary |
---|
Methods in org.infinispan.loaders.jdbc.binary that return StreamingMarshaller | |
---|---|
protected StreamingMarshaller |
JdbcBinaryCacheStore.getMarshaller()
|
Methods in org.infinispan.loaders.jdbc.binary with parameters of type StreamingMarshaller | |
---|---|
void |
JdbcBinaryCacheStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
Uses of StreamingMarshaller in org.infinispan.loaders.jdbc.mixed |
---|
Methods in org.infinispan.loaders.jdbc.mixed with parameters of type StreamingMarshaller | |
---|---|
void |
JdbcMixedCacheStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
Uses of StreamingMarshaller in org.infinispan.loaders.jdbc.stringbased |
---|
Methods in org.infinispan.loaders.jdbc.stringbased with parameters of type StreamingMarshaller | |
---|---|
void |
JdbcStringBasedCacheStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
Uses of StreamingMarshaller in org.infinispan.loaders.keymappers |
---|
Methods in org.infinispan.loaders.keymappers with parameters of type StreamingMarshaller | |
---|---|
void |
MarshalledValueOrPrimitiveMapper.setMarshaller(StreamingMarshaller marshaller)
|
void |
MarshallingTwoWayKey2StringMapper.setMarshaller(StreamingMarshaller marshaller)
|
Uses of StreamingMarshaller in org.infinispan.loaders.remote |
---|
Methods in org.infinispan.loaders.remote with parameters of type StreamingMarshaller | |
---|---|
void |
RemoteCacheStore.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
Uses of StreamingMarshaller in org.infinispan.lucene.cachestore |
---|
Methods in org.infinispan.lucene.cachestore with parameters of type StreamingMarshaller | |
---|---|
void |
LuceneCacheLoader.init(CacheLoaderConfig config,
Cache<?,?> cache,
StreamingMarshaller m)
|
Uses of StreamingMarshaller in org.infinispan.marshall |
---|
Classes in org.infinispan.marshall that implement StreamingMarshaller | |
---|---|
class |
AbstractDelegatingMarshaller
With the introduction of global and cache marshallers, there's a need to separate marshallers but still rely on the same marshalling backend as previously. |
class |
CacheMarshaller
A cache-scoped marshaller. |
class |
GlobalMarshaller
A globally-scoped marshaller. |
class |
VersionAwareMarshaller
A delegate to various other marshallers like JBossMarshaller . |
Fields in org.infinispan.marshall declared as StreamingMarshaller | |
---|---|
protected StreamingMarshaller |
AbstractDelegatingMarshaller.marshaller
|
Constructors in org.infinispan.marshall with parameters of type StreamingMarshaller | |
---|---|
MarshalledValue.Externalizer(StreamingMarshaller globalMarshaller)
|
|
MarshalledValue(Object instance,
boolean equalityPreferenceForInstance,
StreamingMarshaller marshaller)
|
Uses of StreamingMarshaller in org.infinispan.marshall.jboss |
---|
Classes in org.infinispan.marshall.jboss that implement StreamingMarshaller | |
---|---|
class |
AbstractJBossMarshaller
Common parent for both embedded and standalone JBoss Marshalling-based marshallers. |
class |
GenericJBossMarshaller
A marshaller that makes use of JBoss Marshalling to serialize and deserialize objects. |
class |
JBossMarshaller
A JBoss Marshalling based marshaller that is oriented at internal, embedded, Infinispan usage. |
Methods in org.infinispan.marshall.jboss that return StreamingMarshaller | |
---|---|
StreamingMarshaller |
ExtendedRiverUnmarshaller.getInfinispanMarshaller()
|
Methods in org.infinispan.marshall.jboss with parameters of type StreamingMarshaller | |
---|---|
void |
ExternalizerTable.inject(RemoteCommandsFactory cmdFactory,
GlobalComponentRegistry gcr,
StreamingMarshaller globalMarshaller)
|
void |
ExtendedRiverUnmarshaller.setInfinispanMarshaller(StreamingMarshaller infinispanMarshaller)
|
Uses of StreamingMarshaller in org.infinispan.remoting.transport.jgroups |
---|
Fields in org.infinispan.remoting.transport.jgroups declared as StreamingMarshaller | |
---|---|
protected StreamingMarshaller |
JGroupsTransport.marshaller
|
Methods in org.infinispan.remoting.transport.jgroups with parameters of type StreamingMarshaller | |
---|---|
void |
JGroupsTransport.initialize(StreamingMarshaller marshaller,
ExecutorService asyncExecutor,
InboundInvocationHandler inboundInvocationHandler,
CacheManagerNotifier notifier,
GlobalComponentRegistry gcr,
BackupReceiverRepository backupReceiverRepository)
Initializes the transport with global cache configuration and transport-specific properties. |
Constructors in org.infinispan.remoting.transport.jgroups with parameters of type StreamingMarshaller | |
---|---|
MarshallerAdapter(StreamingMarshaller m)
|
|
Infinispan Distribution 5.2.6.Final-redhat-2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |