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 MarshallerRemoteCacheContainer. getMarshaller()MarshallerRemoteCacheManager. getMarshaller()Methods in org.infinispan.client.hotrod with parameters of type Marshaller Modifier and Type Method Description DataFormat.BuilderDataFormat.Builder. keyMarshaller(Marshaller keyMarshaller)DataFormat.BuilderDataFormat.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 MarshallerConfiguration. marshaller()Methods in org.infinispan.client.hotrod.configuration that return types with arguments of type Marshaller Modifier and Type Method Description java.lang.Class<? extends Marshaller>Configuration. marshallerClass()Methods in org.infinispan.client.hotrod.configuration with parameters of type Marshaller Modifier and Type Method Description ConfigurationBuilderAbstractConfigurationChildBuilder. marshaller(Marshaller marshaller)ConfigurationBuilderConfigurationBuilder. marshaller(Marshaller marshaller)ConfigurationBuilderConfigurationChildBuilder. marshaller(Marshaller marshaller)Allows you to specify an instance ofMarshallerto serialize and deserialize user objects.Method parameters in org.infinispan.client.hotrod.configuration with type arguments of type Marshaller Modifier and Type Method Description ConfigurationBuilderAbstractConfigurationChildBuilder. marshaller(java.lang.Class<? extends Marshaller> marshaller)ConfigurationBuilderConfigurationBuilder. marshaller(java.lang.Class<? extends Marshaller> marshaller)ConfigurationBuilderConfigurationChildBuilder. marshaller(java.lang.Class<? extends Marshaller> marshaller)Allows you to specify a customMarshallerimplementation 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 classProtoStreamMarshallerA marshaller that uses Protocol Buffers.Methods in org.infinispan.client.hotrod.marshall with parameters of type Marshaller Modifier and Type Method Description static <T> TMarshallerUtil. bytes2obj(Marshaller marshaller, byte[] bytes, boolean objectStorage, ClassWhiteList whitelist)static byte[]MarshallerUtil. obj2bytes(Marshaller marshaller, java.lang.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(java.lang.Object source, MediaType sourceMediaType, Marshaller marshaller)Converts a java object to a sequence of bytes applying standard java serialization.static java.lang.ObjectStandardConversions. 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 interfaceStreamingMarshallerA specialization ofMarshallerthat supports streams.Classes in org.infinispan.commons.marshall that implement Marshaller Modifier and Type Class Description classAbstractDelegatingMarshallerWith the introduction of global and cache marshallers, there's a need to separate marshallers but still rely on the same marshalling backend as previously.classAbstractMarshallerAbstract Marshaller implementation containing shared implementations.classIdentityMarshallerA marshaller that does not transform the content, only applicable to byte[] payloads.classJavaSerializationMarshallerStandard Java serialization marshaller.classStringMarshallerclassUTF8StringMarshaller -
Uses of Marshaller in org.infinispan.commons.marshall.jboss
Classes in org.infinispan.commons.marshall.jboss that implement Marshaller Modifier and Type Class Description classAbstractJBossMarshallerCommon parent for both embedded and standalone JBoss Marshalling-based marshallers.classGenericJBossMarshallerA 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> TUtil. 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 classBaseProtoStreamMarshallerProvides the starting point for implementing aMarshallerthat 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 java.util.Optional<Marshaller>TaskContext. getMarshaller()Marshaller for this task executionMethods in org.infinispan.tasks with parameters of type Marshaller Modifier and Type Method Description TaskContextTaskContext. marshaller(Marshaller marshaller)The marshaller with which this task should be executed
-