Uses of Interface
org.infinispan.commons.marshall.Marshaller
-
Packages that use Marshaller Package Description 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 classes -
-
Uses of Marshaller in org.infinispan.commons.dataconversion
Fields in org.infinispan.commons.dataconversion declared as Marshaller Modifier and Type Field Description protected Marshaller
CompatModeEncoder. marshaller
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 CompatModeEncoder(Marshaller marshaller)
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;
-