Uses of Interface
org.infinispan.commons.marshall.Marshaller
-
-
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.configuration.cache
Fields in org.infinispan.configuration.cache with type parameters of type Marshaller Modifier and Type Field Description static AttributeDefinition<Marshaller>
CompatibilityModeConfiguration. MARSHALLER
Methods in org.infinispan.configuration.cache that return Marshaller Modifier and Type Method Description Marshaller
CompatibilityModeConfiguration. marshaller()
Marshaller
CompatibilityModeConfigurationBuilder. marshaller()
Methods in org.infinispan.configuration.cache with parameters of type Marshaller Modifier and Type Method Description CompatibilityModeConfigurationBuilder
CompatibilityModeConfigurationBuilder. marshaller(Marshaller marshaller)
Sets the marshaller instance to be used by the interoperability layer. -
Uses of Marshaller in org.infinispan.configuration.global
Fields in org.infinispan.configuration.global with type parameters of type Marshaller Modifier and Type Field Description static AttributeDefinition<Marshaller>
SerializationConfiguration. MARSHALLER
Methods in org.infinispan.configuration.global that return Marshaller Modifier and Type Method Description Marshaller
SerializationConfigurationBuilder. getMarshaller()
Marshaller
SerializationConfiguration. marshaller()
Methods in org.infinispan.configuration.global with parameters of type Marshaller Modifier and Type Method Description 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 Modifier and Type Field Description protected Marshaller
DefaultExecutorService. marshaller
Deprecated. -
Uses of Marshaller in org.infinispan.marshall.core
Classes in org.infinispan.marshall.core that implement Marshaller Modifier and Type Class Description class
GlobalMarshaller
A globally-scoped marshaller.class
JBossMarshaller
A JBoss Marshalling based marshaller that is oriented at internal, embedded, Infinispan usage.Methods in org.infinispan.marshall.core that return Marshaller Modifier and Type Method Description Marshaller
GlobalMarshaller. startDefaultExternalMarshaller(GlobalConfiguration globalCfg)
Constructors in org.infinispan.marshall.core with parameters of type Marshaller Constructor Description GlobalMarshaller(Marshaller external)
-
Uses of Marshaller in org.infinispan.persistence.remote.configuration
Method parameters in org.infinispan.persistence.remote.configuration with type arguments of type Marshaller Modifier and Type Method Description RemoteStoreConfigurationBuilder
AbstractRemoteStoreConfigurationChildBuilder. marshaller(Class<? extends Marshaller> marshaller)
RemoteStoreConfigurationBuilder
RemoteStoreConfigurationBuilder. marshaller(Class<? extends Marshaller> marshaller)
RemoteStoreConfigurationBuilder
RemoteStoreConfigurationChildBuilder. marshaller(Class<? extends Marshaller> marshaller)
Allows you to specify a customMarshaller
implementation to serialize and deserialize user objects. -
Uses of Marshaller in org.infinispan.persistence.remote.upgrade
Classes in org.infinispan.persistence.remote.upgrade that implement Marshaller Modifier and Type Class Description class
MigrationMarshaller
MigrationMarshaller. -
Uses of Marshaller in org.infinispan.persistence.remote.wrapper
Classes in org.infinispan.persistence.remote.wrapper that implement Marshaller Modifier and Type Class Description class
HotRodEntryMarshaller
HotRodEntryMarshaller. -
Uses of Marshaller in org.infinispan.query.remote
Classes in org.infinispan.query.remote that implement Marshaller Modifier and Type Class Description class
CompatibilityProtoStreamMarshaller
A perEmbeddedCacheManager
marshaller that should be used as compatibility mode marshaller in server. -
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.server.hotrod
Methods in org.infinispan.server.hotrod that return Marshaller Modifier and Type Method Description Marshaller
HotRodServer. getMarshaller()
Methods in org.infinispan.server.hotrod with parameters of type Marshaller Modifier and Type Method Description void
HotRodServer. setMarshaller(Marshaller marshaller)
-
Uses of Marshaller in org.infinispan.server.hotrod.logging
Methods in org.infinispan.server.hotrod.logging with parameters of type Marshaller Modifier and Type Method Description void
Log_$logger. warnMarshallerAlreadySet(Marshaller existingMarshaller, Marshaller newMarshaller)
void
Log. warnMarshallerAlreadySet(Marshaller existingMarshaller, Marshaller newMarshaller)
-
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
-