Uses of Interface
org.infinispan.commons.marshall.Marshaller
-
Packages that use Marshaller Package Description org.infinispan.client.hotrod Hot Rod client API.org.infinispan.client.hotrod.configuration Hot Rod client configuration API.org.infinispan.client.hotrod.marshall org.infinispan.commons.dataconversion org.infinispan.commons.marshall Provides Infinispan-specific input and output streams, buffers and related utilities.org.infinispan.commons.marshall.jboss Hooks to bridge Infinispan's marshalling APIs with JBoss Marshalling internals.org.infinispan.commons.util Commons package providing various utility classesorg.infinispan.query.remote.client Hot Rod query API.org.infinispan.tasks Server tasks API. -
-
Uses of Marshaller in org.infinispan.client.hotrod
Methods in org.infinispan.client.hotrod that return Marshaller Modifier and Type Method Description Marshaller
RemoteCacheContainer. getMarshaller()
Marshaller
RemoteCacheManager. getMarshaller()
Methods in org.infinispan.client.hotrod with parameters of type Marshaller Modifier and Type Method Description DataFormat.Builder
DataFormat.Builder. keyMarshaller(Marshaller keyMarshaller)
DataFormat.Builder
DataFormat.Builder. valueMarshaller(Marshaller valueMarshaller)
-
Uses of Marshaller in org.infinispan.client.hotrod.configuration
Methods in org.infinispan.client.hotrod.configuration that return Marshaller Modifier and Type Method Description Marshaller
Configuration. marshaller()
Methods in org.infinispan.client.hotrod.configuration that return types with arguments of type Marshaller Modifier and Type Method Description Class<? extends Marshaller>
Configuration. marshallerClass()
Methods in org.infinispan.client.hotrod.configuration with parameters of type Marshaller Modifier and Type Method Description ConfigurationBuilder
AbstractConfigurationChildBuilder. marshaller(Marshaller marshaller)
ConfigurationBuilder
ConfigurationBuilder. marshaller(Marshaller marshaller)
ConfigurationBuilder
ConfigurationChildBuilder. marshaller(Marshaller marshaller)
Allows you to specify an instance ofMarshaller
to serialize and deserialize user objects.Method parameters in org.infinispan.client.hotrod.configuration with type arguments of type Marshaller Modifier and Type Method Description ConfigurationBuilder
AbstractConfigurationChildBuilder. marshaller(Class<? extends Marshaller> marshaller)
ConfigurationBuilder
ConfigurationBuilder. marshaller(Class<? extends Marshaller> marshaller)
ConfigurationBuilder
ConfigurationChildBuilder. marshaller(Class<? extends Marshaller> marshaller)
Allows you to specify a customMarshaller
implementation to serialize and deserialize user objects. -
Uses of Marshaller in org.infinispan.client.hotrod.marshall
Classes in org.infinispan.client.hotrod.marshall that implement Marshaller Modifier and Type Class Description class
ProtoStreamMarshaller
A marshaller that uses Protocol Buffers.Methods in org.infinispan.client.hotrod.marshall with parameters of type Marshaller Modifier and Type Method Description static <T> T
MarshallerUtil. bytes2obj(Marshaller marshaller, byte[] bytes, boolean objectStorage, ClassWhiteList whitelist)
static byte[]
MarshallerUtil. obj2bytes(Marshaller marshaller, Object o, boolean isKey, int estimateKeySize, int estimateValueSize)
-
Uses of Marshaller in org.infinispan.commons.dataconversion
Methods in org.infinispan.commons.dataconversion with parameters of type Marshaller Modifier and Type Method Description static byte[]
StandardConversions. convertJavaToOctetStream(Object source, MediaType sourceMediaType, Marshaller marshaller)
Converts a java object to a sequence of bytes applying standard java serialization.static Object
StandardConversions. convertOctetStreamToJava(byte[] source, MediaType destination, Marshaller marshaller)
Converts an octet stream to a Java objectConstructors in org.infinispan.commons.dataconversion with parameters of type Marshaller Constructor Description GlobalMarshallerEncoder(Marshaller globalMarshaller)
MarshallerEncoder(Marshaller marshaller)
TranscoderMarshallerAdapter(Marshaller marshaller)
-
Uses of Marshaller in org.infinispan.commons.marshall
Subinterfaces of Marshaller in org.infinispan.commons.marshall Modifier and Type Interface Description interface
StreamingMarshaller
A specialization ofMarshaller
that supports streams.Classes in org.infinispan.commons.marshall that implement Marshaller Modifier and Type Class Description 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
IdentityMarshaller
A marshaller that does not transform the content, only applicable to byte[] payloads.class
JavaSerializationMarshaller
Standard Java serialization marshaller.class
StringMarshaller
class
UTF8StringMarshaller
-
Uses of Marshaller in org.infinispan.commons.marshall.jboss
Classes in org.infinispan.commons.marshall.jboss that implement Marshaller Modifier and Type Class Description 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. -
Uses of Marshaller in org.infinispan.commons.util
Methods in org.infinispan.commons.util with parameters of type Marshaller Modifier and Type Method Description static <T> T
Util. cloneWithMarshaller(Marshaller marshaller, T x)
Clones parameter x of type T with a given Marshaller reference; -
Uses of Marshaller in org.infinispan.query.remote.client
Classes in org.infinispan.query.remote.client that implement Marshaller Modifier and Type Class Description class
BaseProtoStreamMarshaller
Provides the starting point for implementing aMarshaller
that uses Protobuf encoding. -
Uses of Marshaller in org.infinispan.tasks
Methods in org.infinispan.tasks that return types with arguments of type Marshaller Modifier and Type Method Description Optional<Marshaller>
TaskContext. getMarshaller()
Marshaller for this task executionMethods in org.infinispan.tasks with parameters of type Marshaller Modifier and Type Method Description TaskContext
TaskContext. marshaller(Marshaller marshaller)
The marshaller with which this task should be executed
-