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
Fields in org.infinispan.client.hotrod.configuration with type parameters of type Marshaller Modifier and Type Field Description static AttributeDefinition<Marshaller>
RemoteCacheConfiguration. MARSHALLER
Methods in org.infinispan.client.hotrod.configuration that return Marshaller Modifier and Type Method Description Marshaller
Configuration. marshaller()
Marshaller
RemoteCacheConfiguration. 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()
Class<? extends Marshaller>
RemoteCacheConfiguration. 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.RemoteCacheConfigurationBuilder
RemoteCacheConfigurationBuilder. marshaller(Marshaller marshaller)
Specifies a customMarshaller
implementation 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> marshallerClass)
ConfigurationBuilder
ConfigurationChildBuilder. marshaller(Class<? extends Marshaller> marshaller)
Allows you to specify a customMarshaller
implementation to serialize and deserialize user objects.RemoteCacheConfigurationBuilder
RemoteCacheConfigurationBuilder. marshaller(Class<? extends Marshaller> marshallerClass)
Specifies a customMarshaller
implementation.Constructors in org.infinispan.client.hotrod.configuration with parameters of type Marshaller Constructor Description Configuration(ExecutorFactoryConfiguration asyncExecutorFactory, Supplier<FailoverRequestBalancingStrategy> balancingStrategyFactory, ClassLoader classLoader, ClientIntelligence clientIntelligence, ConnectionPoolConfiguration connectionPool, int connectionTimeout, Class<? extends org.infinispan.client.hotrod.impl.consistenthash.ConsistentHash>[] consistentHashImpl, boolean forceReturnValues, int keySizeEstimate, Marshaller marshaller, Class<? extends Marshaller> marshallerClass, ProtocolVersion protocolVersion, List<ServerConfiguration> servers, int socketTimeout, SecurityConfiguration security, boolean tcpNoDelay, boolean tcpKeepAlive, int valueSizeEstimate, int maxRetries, NearCacheConfiguration nearCache, List<ClusterConfiguration> clusters, List<String> serialAllowList, int batchSize, TransactionConfiguration transaction, StatisticsConfiguration statistics, Features features, List<org.infinispan.protostream.SerializationContextInitializer> contextInitializers, Map<String,RemoteCacheConfiguration> remoteCaches, TransportFactory transportFactory, boolean tracingPropagationEnabled)
-
Uses of Marshaller in org.infinispan.client.hotrod.event.impl
Methods in org.infinispan.client.hotrod.event.impl that return Marshaller Modifier and Type Method Description Marshaller
ClientListenerNotifier. marshaller()
Constructors in org.infinispan.client.hotrod.event.impl with parameters of type Marshaller Constructor Description ClientListenerNotifier(Marshaller marshaller, org.infinispan.client.hotrod.impl.transport.netty.ChannelFactory channelFactory, Configuration configuration)
-
Uses of Marshaller in org.infinispan.client.hotrod.impl
Methods in org.infinispan.client.hotrod.impl that return Marshaller Modifier and Type Method Description Marshaller
MarshallerRegistry. getMarshaller(Class<? extends Marshaller> marshallerClass)
Marshaller
MarshallerRegistry. getMarshaller(MediaType mediaType)
Methods in org.infinispan.client.hotrod.impl with parameters of type Marshaller Modifier and Type Method Description void
MarshallerRegistry. registerMarshaller(Marshaller marshaller)
Method parameters in org.infinispan.client.hotrod.impl with type arguments of type Marshaller Modifier and Type Method Description Marshaller
MarshallerRegistry. getMarshaller(Class<? extends Marshaller> marshallerClass)
-
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, ClassAllowList allowList)
static byte[]
MarshallerUtil. obj2bytes(Marshaller marshaller, Object o, boolean isKey, int estimateKeySize, int estimateValueSize)
Deprecated.Since 12.0, will be removed in 15.0static byte[]
MarshallerUtil. obj2bytes(Marshaller marshaller, Object o, BufferSizePredictor sizePredictor)
-
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)
Deprecated.Since 13.0, with no replacement.static Object
StandardConversions. convertOctetStreamToJava(byte[] source, MediaType destination, Marshaller marshaller)
Deprecated.Since 13.0, without replacement.void
BinaryTranscoder. overrideMarshaller(Marshaller marshaller)
Deprecated.Constructors in org.infinispan.commons.dataconversion with parameters of type Marshaller Constructor Description BinaryTranscoder(Marshaller marshaller)
Deprecated.DefaultTranscoder(Marshaller marshaller)
GlobalMarshallerEncoder(Marshaller globalMarshaller)
Deprecated.MarshallerEncoder(Marshaller marshaller)
Deprecated.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
AbstractMarshaller
Abstract Marshaller implementation containing shared implementations.class
IdentityMarshaller
A marshaller that does not transform the content, only applicable to byte[] payloads.class
ImmutableProtoStreamMarshaller
A ProtoStreamMarshaller
implementation that uses Protobuf encoding.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(ClassLoader classLoader, ClassAllowList classAllowList)
-
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
Deprecated.since 11.0.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
Deprecated.since 11.0.class
JBossUserMarshaller
Deprecated.since 11.0. -
Uses of Marshaller in org.infinispan.jboss.marshalling.dataconversion
Constructors in org.infinispan.jboss.marshalling.dataconversion with parameters of type Marshaller Constructor Description JBossMarshallingTranscoder(Marshaller marshaller)
-
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, Object obj, 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 serializing/deserializing 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.jdbc.common
Methods in org.infinispan.persistence.jdbc.common with parameters of type Marshaller Modifier and Type Method Description static ByteBuffer
JdbcUtil. marshall(Object obj, Marshaller marshaller)
static <T> T
JdbcUtil. unmarshall(ByteBuffer buf, Marshaller marshaller)
-
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(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.wrapper
Classes in org.infinispan.persistence.remote.wrapper that implement Marshaller Modifier and Type Class Description class
HotRodEntryMarshaller
Deprecated.UseIdentityMarshaller
instead. -
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 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
-