Uses of Interface
org.infinispan.marshall.Marshaller

Packages that use Marshaller
org.infinispan.client.hotrod   
org.infinispan.client.hotrod.impl   
org.infinispan.client.hotrod.marshall   
org.infinispan.config Cache configuration beans and parsers. 
org.infinispan.configuration.global   
org.infinispan.distexec   
org.infinispan.distexec.mapreduce   
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.util General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers. 
 

Uses of Marshaller in org.infinispan.client.hotrod
 

Constructors in org.infinispan.client.hotrod with parameters of type Marshaller
RemoteCacheManager(Marshaller marshaller, Properties props)
          Same as RemoteCacheManager.RemoteCacheManager(Marshaller, java.util.Properties, boolean) with start = true.
RemoteCacheManager(Marshaller marshaller, Properties props, boolean start)
          Builds a remote cache manager that relies on the provided Marshaller for marshalling keys and values to be send over to the remote Infinispan cluster.
RemoteCacheManager(Marshaller marshaller, Properties props, boolean start, ClassLoader classLoader, ExecutorFactory asyncExecutorFactory)
          Builds a remote cache manager that relies on the provided Marshaller for marshalling keys and values to be send over to the remote Infinispan cluster.
RemoteCacheManager(Marshaller marshaller, Properties props, ClassLoader classLoader)
          Same as RemoteCacheManager.RemoteCacheManager(Marshaller, java.util.Properties, boolean) with start = true.
RemoteCacheManager(Marshaller marshaller, Properties props, ExecutorFactory asyncExecutorFactory)
          Same as RemoteCacheManager.RemoteCacheManager(Marshaller, java.util.Properties, boolean) with start = true.
 

Uses of Marshaller in org.infinispan.client.hotrod.impl
 

Methods in org.infinispan.client.hotrod.impl with parameters of type Marshaller
 void RemoteCacheImpl.init(Marshaller marshaller, ExecutorService executorService, OperationsFactory operationsFactory, int estimateKeySize, int estimateValueSize)
           
 

Uses of Marshaller in org.infinispan.client.hotrod.marshall
 

Classes in org.infinispan.client.hotrod.marshall that implement Marshaller
 class ApacheAvroMarshaller
          This is a portable serialization marshaller based on Apache Avro.
 

Uses of Marshaller in org.infinispan.config
 

Method parameters in org.infinispan.config with type arguments of type Marshaller
 FluentGlobalConfiguration.SerializationConfig GlobalConfiguration.SerializationType.marshallerClass(Class<? extends Marshaller> marshallerClass)
          Deprecated.  
 FluentGlobalConfiguration.SerializationConfig FluentGlobalConfiguration.SerializationConfig.marshallerClass(Class<? extends Marshaller> marshallerClass)
          Deprecated. Fully qualified name of the marshaller to use.
 

Uses of Marshaller in org.infinispan.configuration.global
 

Methods in org.infinispan.configuration.global that return Marshaller
 Marshaller SerializationConfiguration.marshaller()
           
 

Methods in org.infinispan.configuration.global with parameters of type Marshaller
 SerializationConfigurationBuilder SerializationConfigurationBuilder.marshaller(Marshaller marshaller)
          Set the marshaller instance that will marshall and unmarshall cache entries.
 

Uses of Marshaller in org.infinispan.distexec
 

Fields in org.infinispan.distexec declared as Marshaller
protected  Marshaller DefaultExecutorService.marshaller
           
 

Uses of Marshaller in org.infinispan.distexec.mapreduce
 

Fields in org.infinispan.distexec.mapreduce declared as Marshaller
protected  Marshaller MapReduceTask.marshaller
           
 

Uses of Marshaller in org.infinispan.marshall
 

Subinterfaces of Marshaller in org.infinispan.marshall
 interface StreamingMarshaller
          A specialization of Marshaller that supports streams.
 

Classes in org.infinispan.marshall that implement Marshaller
 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 AbstractMarshaller
          Abstract Marshaller implementation containing shared implementations.
 class CacheMarshaller
          A cache-scoped marshaller.
 class GlobalMarshaller
          A globally-scoped marshaller.
 class VersionAwareMarshaller
          A delegate to various other marshallers like JBossMarshaller.
 

Uses of Marshaller in org.infinispan.marshall.jboss
 

Classes in org.infinispan.marshall.jboss that implement Marshaller
 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.
 

Uses of Marshaller in org.infinispan.util
 

Methods in org.infinispan.util with parameters of type Marshaller
static
<T> T
Util.cloneWithMarshaller(Marshaller marshaller, T x)
          Clones parameter x of type T with a given Marshaller reference;
 


-->

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