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 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.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 classBytesOnlyMarshallerMarshaller that only supports byte[] instances writing them as isclassProtoStreamMarshallerDeprecated.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> 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 objectvoidBinaryTranscoder. 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 interfaceStreamingMarshallerDeprecated.for internal use onlyClasses 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.classProtoStreamMarshallerProvides the starting point for implementing aMarshallerthat uses Protobuf encoding.classStringMarshallerclassUTF8StringMarshaller -
Uses of Marshaller in org.infinispan.commons.util
Methods in org.infinispan.commons.util that return Marshaller Modifier and Type Method Description static MarshallerUtil. 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> TUtil. 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. MARSHALLERMethods in org.infinispan.configuration.global that return Marshaller Modifier and Type Method Description MarshallerSerializationConfigurationBuilder. getMarshaller()MarshallerSerializationConfiguration. marshaller()Methods in org.infinispan.configuration.global with parameters of type Marshaller Modifier and Type Method Description SerializationConfigurationBuilderSerializationConfigurationBuilder. 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 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.jboss.marshalling.core
Classes in org.infinispan.jboss.marshalling.core that implement Marshaller Modifier and Type Class Description classJBossMarshallerA JBoss Marshalling based marshaller that is oriented at internal, embedded, Infinispan usage.classJBossUserMarshallerAn extension of theJBossMarshallerthat loads user definedExternalizerimplementations. -
Uses of Marshaller in org.infinispan.marshall.core
Classes in org.infinispan.marshall.core that implement Marshaller Modifier and Type Class Description classGlobalMarshallerA globally-scoped marshaller.Methods in org.infinispan.marshall.core with parameters of type Marshaller Modifier and Type Method Description static voidGlobalMarshaller. 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 interfacePersistenceMarshallerThe 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 MarshallerPersistenceMarshaller. 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 voidMarshallingTwoWayKey2StringMapper. 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 RemoteStoreConfigurationBuilderAbstractRemoteStoreConfigurationChildBuilder. marshaller(java.lang.Class<? extends Marshaller> marshaller)RemoteStoreConfigurationBuilderRemoteStoreConfigurationBuilder. marshaller(java.lang.Class<? extends Marshaller> marshaller)RemoteStoreConfigurationBuilderRemoteStoreConfigurationChildBuilder. 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.persistence.remote.upgrade
Classes in org.infinispan.persistence.remote.upgrade that implement Marshaller Modifier and Type Class Description classMigrationMarshallerMigrationMarshaller. -
Uses of Marshaller in org.infinispan.persistence.remote.wrapper
Classes in org.infinispan.persistence.remote.wrapper that implement Marshaller Modifier and Type Class Description classHotRodEntryMarshallerHotRodEntryMarshaller. -
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 MarshallerHotRodServer. getMarshaller()Methods in org.infinispan.server.hotrod with parameters of type Marshaller Modifier and Type Method Description voidHotRodServer. 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 TaskContextTaskContext. marshaller(Marshaller marshaller)The marshaller with which this task should be executed
-