Uses of Interface
org.infinispan.marshall.StreamingMarshaller

Packages that use StreamingMarshaller
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.cassandra This package contains a CacheStore implementation based on persisting to Apache Cassandra 
org.infinispan.loaders.cloud This package contains a CacheStore implementation based on JClouds, which in turn is an abstraction layer to store data on cloud infrastructure providers such as Amazon's S3, RackspaceCloud's CloudFiles, Microsoft's Windows Azure Blob Storage API, and others. 
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.jdbm This package contains a CacheStore implementation based on persisting to JDBM. 
org.infinispan.loaders.remote   
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 Remote communication between cache instances. 
org.infinispan.remoting.transport Transports handle the low-level networking, used by the remoting components. 
org.infinispan.remoting.transport.jgroups A transport implementation based on JGroups
org.infinispan.statetransfer Transfer of state to new caches in a cluster. 
org.infinispan.transaction JTA transaction support. 
 

Uses of StreamingMarshaller in org.infinispan
 

Fields in org.infinispan declared as StreamingMarshaller
protected  StreamingMarshaller CacheDelegate.marshaller
           
 

Methods in org.infinispan with parameters of type StreamingMarshaller
 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, StreamingMarshaller marshaller, ResponseGenerator responseGenerator, DistributionManager distributionManager, EmbeddedCacheManager cacheManager, StateTransferManager stateTransferManager, ExecutorService asyncExecutor)
           
 

Uses of StreamingMarshaller in org.infinispan.interceptors
 

Methods in org.infinispan.interceptors with parameters of type StreamingMarshaller
protected  void MarshalledValueInterceptor.injectMarshaller(StreamingMarshaller marshaller)
           
 

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 CacheLoader.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
          Used to initialize a cache loader.
 void AbstractCacheStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 void AbstractCacheLoader.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 void CacheLoaderManagerImpl.inject(Cache cache, StreamingMarshaller marshaller, Configuration configuration)
           
 

Uses of StreamingMarshaller in org.infinispan.loaders.bdbje
 

Methods in org.infinispan.loaders.bdbje with parameters of type StreamingMarshaller
 com.sleepycat.collections.StoredMap<Object,InternalCacheEntry> BdbjeResourceFactory.createStoredMapViewOfDatabase(com.sleepycat.je.Database database, com.sleepycat.bind.serial.StoredClassCatalog classCatalog, StreamingMarshaller 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, StreamingMarshaller marshaller)
          create a StoredMap persisted by the database
 void BdbjeCacheStore.init(CacheLoaderConfig config, Cache cache, StreamingMarshaller m)
          Used to initialize a cache loader.
 

Uses of StreamingMarshaller in org.infinispan.loaders.cassandra
 

Methods in org.infinispan.loaders.cassandra with parameters of type StreamingMarshaller
 void CassandraCacheStore.init(CacheLoaderConfig clc, Cache<?,?> cache, StreamingMarshaller m)
           
 

Uses of StreamingMarshaller in org.infinispan.loaders.cloud
 

Methods in org.infinispan.loaders.cloud with parameters of type StreamingMarshaller
 void CloudCacheStore.init(CacheLoaderConfig cfg, Cache<?,?> cache, StreamingMarshaller m)
           
 void CloudCacheStore.init(CacheLoaderConfig cfg, Cache<?,?> cache, StreamingMarshaller m, org.jclouds.blobstore.BlobStoreContext ctx, org.jclouds.blobstore.BlobStore blobStore, org.jclouds.blobstore.AsyncBlobStore asyncBlobStore, boolean constructInternalBlobstores)
           
 

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 AsyncStore.init(CacheLoaderConfig config, Cache<?,?> cache, StreamingMarshaller m)
           
 void AbstractDelegatingStore.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 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.jdbm
 

Methods in org.infinispan.loaders.jdbm with parameters of type StreamingMarshaller
 void JdbmCacheStore.init(CacheLoaderConfig clc, Cache cache, StreamingMarshaller m)
           
 

Constructors in org.infinispan.loaders.jdbm with parameters of type StreamingMarshaller
JdbmSerializer(StreamingMarshaller marshaller)
          Constructs a new JdbmSerializer.
 

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.marshall
 

Classes in org.infinispan.marshall that implement StreamingMarshaller
 class VersionAwareMarshaller
          A delegate to various other marshallers like JBossMarshaller.
 

Methods in org.infinispan.marshall with parameters of type StreamingMarshaller
 void MarshalledValue.Externalizer.inject(StreamingMarshaller marshaller)
           
 

Constructors in org.infinispan.marshall with parameters of type StreamingMarshaller
MarshalledValue(byte[] raw, int cachedHashCode, StreamingMarshaller marshaller)
           
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 JBossMarshaller
          A specialized form of the GenericJBossMarshaller, making use of a custom object table for types internal to Infinispan.
 

Methods in org.infinispan.marshall.jboss with parameters of type StreamingMarshaller
protected  org.infinispan.marshall.jboss.ExternalizerTable JBossMarshaller.createExternalizerTable(RemoteCommandsFactory f, StreamingMarshaller m, GlobalConfiguration g)
           
 void JBossMarshaller.start(ClassLoader defaultCl, RemoteCommandsFactory cmdFactory, StreamingMarshaller ispnMarshaller, GlobalConfiguration globalCfg)
           
 

Uses of StreamingMarshaller in org.infinispan.remoting
 

Methods in org.infinispan.remoting with parameters of type StreamingMarshaller
 void InboundInvocationHandlerImpl.inject(GlobalComponentRegistry gcr, StreamingMarshaller marshaller, EmbeddedCacheManager embeddedCacheManager, Transport transport, GlobalConfiguration globalConfiguration)
           
 

Uses of StreamingMarshaller in org.infinispan.remoting.transport
 

Methods in org.infinispan.remoting.transport with parameters of type StreamingMarshaller
 void Transport.initialize(StreamingMarshaller marshaller, ExecutorService asyncExecutor, InboundInvocationHandler handler, CacheManagerNotifier notifier)
          Initializes the transport with global cache configuration and transport-specific properties.
 

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)
           
 

Constructors in org.infinispan.remoting.transport.jgroups with parameters of type StreamingMarshaller
MarshallerAdapter(StreamingMarshaller m)
           
 

Uses of StreamingMarshaller in org.infinispan.statetransfer
 

Methods in org.infinispan.statetransfer with parameters of type StreamingMarshaller
 void StateTransferManagerImpl.injectDependencies(RpcManager rpcManager, AdvancedCache cache, Configuration configuration, DataContainer dataContainer, CacheLoaderManager clm, StreamingMarshaller marshaller, TransactionLog transactionLog, InterceptorChain interceptorChain, InvocationContextContainer invocationContextContainer, CommandsFactory commandsFactory, TransactionTable txTable)
           
 

Uses of StreamingMarshaller in org.infinispan.transaction
 

Methods in org.infinispan.transaction with parameters of type StreamingMarshaller
 void TransactionLog.writeCommitLog(StreamingMarshaller marshaller, ObjectOutput out)
           
 void TransactionLog.writePendingPrepares(StreamingMarshaller marshaller, ObjectOutput out)
           
 



Copyright © 2011 JBoss, a division of Red Hat. All Rights Reserved.