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

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)
           
 FluentGlobalConfiguration.SerializationConfig FluentGlobalConfiguration.SerializationConfig.marshallerClass(Class<? extends Marshaller> marshallerClass)
          Fully qualified name of the marshaller to use.
 

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 AbstractMarshaller
          Abstract Marshaller implementation containing shared implementations.
 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 GenericJBossMarshaller
          A marshaller that makes use of JBoss Marshalling to serialize and deserialize objects.
 class JBossMarshaller
          A specialized form of the GenericJBossMarshaller, making use of a custom object table for types internal to Infinispan.
 

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 © 2011 JBoss, a division of Red Hat. All Rights Reserved.