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 java.lang.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(java.lang.Class<? extends Marshaller> marshaller)
ConfigurationBuilder
ConfigurationBuilder. marshaller(java.lang.Class<? extends Marshaller> marshaller)
ConfigurationBuilder
ConfigurationChildBuilder. marshaller(java.lang.Class<? extends Marshaller> marshaller)
Allows you to specify a customMarshaller
implementation to serialize and deserialize user objects.Constructors in org.infinispan.client.hotrod.configuration with parameters of type Marshaller Constructor Description Configuration(ExecutorFactoryConfiguration asyncExecutorFactory, java.util.function.Supplier<FailoverRequestBalancingStrategy> balancingStrategyFactory, java.lang.ClassLoader classLoader, ClientIntelligence clientIntelligence, ConnectionPoolConfiguration connectionPool, int connectionTimeout, java.lang.Class<? extends org.infinispan.client.hotrod.impl.consistenthash.ConsistentHash>[] consistentHashImpl, boolean forceReturnValues, int keySizeEstimate, Marshaller marshaller, java.lang.Class<? extends Marshaller> marshallerClass, ProtocolVersion protocolVersion, java.util.List<ServerConfiguration> servers, int socketTimeout, SecurityConfiguration security, boolean tcpNoDelay, boolean tcpKeepAlive, int valueSizeEstimate, int maxRetries, NearCacheConfiguration nearCache, java.util.List<ClusterConfiguration> clusters, java.util.List<java.lang.String> serialWhitelist, int batchSize, TransactionConfiguration transaction, StatisticsConfiguration statistics, Features features, java.util.List<org.infinispan.protostream.SerializationContextInitializer> contextInitializers)
-
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
BytesOnlyMarshaller
Marshaller that only supports byte[] instances writing them as isclass
ProtoStreamMarshaller
Deprecated.since 10.0, will be removed in the future.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, 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.Object
StandardConversions. convertOctetStreamToJava(byte[] source, MediaType destination, Marshaller marshaller)
Converts an octet stream to a Java objectvoid
BinaryTranscoder. overrideMarshaller(Marshaller marshaller)
Constructors in org.infinispan.commons.dataconversion with parameters of type Marshaller Constructor Description BinaryTranscoder(Marshaller marshaller)
DefaultTranscoder(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
Deprecated.for internal use onlyClasses 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
ProtoStreamMarshaller
Provides the starting point for implementing aMarshaller
that uses Protobuf encoding.class
StringMarshaller
class
UTF8StringMarshaller
-
Uses of Marshaller in org.infinispan.commons.util
Methods in org.infinispan.commons.util that return Marshaller Modifier and Type Method Description static Marshaller
Util. getJBossMarshaller(java.lang.ClassLoader classLoader, ClassWhiteList classWhiteList)
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.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.jboss.marshalling.commons
Classes in org.infinispan.jboss.marshalling.commons 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.jboss.marshalling.core
Classes in org.infinispan.jboss.marshalling.core that implement Marshaller Modifier and Type Class Description class
JBossMarshaller
A JBoss Marshalling based marshaller that is oriented at internal, embedded, Infinispan usage.class
JBossUserMarshaller
An extension of theJBossMarshaller
that loads user definedExternalizer
implementations. -
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.Methods in org.infinispan.marshall.core with parameters of type Marshaller Modifier and Type Method Description static void
GlobalMarshaller. writeUnknown(Marshaller marshaller, java.lang.Object obj, java.io.ObjectOutput out)
-
Uses of Marshaller in org.infinispan.marshall.persistence
Subinterfaces of Marshaller in org.infinispan.marshall.persistence Modifier and Type Interface Description interface
PersistenceMarshaller
The marshaller that is responsible serializaing/desearilizing objects which are to be persisted.Methods in org.infinispan.marshall.persistence that return Marshaller Modifier and Type Method Description Marshaller
PersistenceMarshaller. getUserMarshaller()
-
Uses of Marshaller in org.infinispan.persistence.keymappers
Methods in org.infinispan.persistence.keymappers with parameters of type Marshaller Modifier and Type Method Description default void
MarshallingTwoWayKey2StringMapper. setMarshaller(Marshaller marshaller)
-
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(java.lang.Class<? extends Marshaller> marshaller)
RemoteStoreConfigurationBuilder
RemoteStoreConfigurationBuilder. marshaller(java.lang.Class<? extends Marshaller> marshaller)
RemoteStoreConfigurationBuilder
RemoteStoreConfigurationChildBuilder. marshaller(java.lang.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.server.core.dataconversion
Constructors in org.infinispan.server.core.dataconversion with parameters of type Marshaller Constructor Description JBossMarshallingTranscoder(JsonTranscoder jsonObjectTranscoder, Marshaller marshaller)
-
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.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 TaskContext
TaskContext. marshaller(Marshaller marshaller)
The marshaller with which this task should be executed
-