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.commons.marshall Provides Infinispan-specific input and output streams, buffers and related utilities.org.infinispan.commons.util Commons package providing various utility classesorg.infinispan.configuration.global EmbeddedCacheManagerconfigurationorg.infinispan.jboss.marshalling.commons Hooks to bridge Infinispan's marshalling APIs with JBoss Marshalling internals.org.infinispan.marshall.persistence org.infinispan.persistence.remote.configuration Configuration forRemoteStore.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 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(Class<? extends Marshaller> marshaller)ConfigurationBuilderConfigurationBuilder. marshaller(Class<? extends Marshaller> marshaller)ConfigurationBuilderConfigurationChildBuilder. marshaller(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, 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> serialWhitelist, int batchSize, TransactionConfiguration transaction, StatisticsConfiguration statistics, Features features, List<org.infinispan.protostream.SerializationContextInitializer> contextInitializers, Map<String,RemoteCacheConfiguration> remoteCaches) -
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(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 org.infinispan.commons.configuration.attributes.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.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.remote.configuration
Method parameters in org.infinispan.persistence.remote.configuration with type arguments of type Marshaller Modifier and Type Method Description RemoteStoreConfigurationBuilderAbstractRemoteStoreConfigurationChildBuilder. marshaller(Class<? extends Marshaller> marshaller)RemoteStoreConfigurationBuilderRemoteStoreConfigurationBuilder. marshaller(Class<? extends Marshaller> marshaller)RemoteStoreConfigurationBuilderRemoteStoreConfigurationChildBuilder. marshaller(Class<? extends Marshaller> marshaller)Allows you to specify a customMarshallerimplementation to serialize and deserialize user objects. -
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 TaskContextTaskContext. marshaller(Marshaller marshaller)The marshaller with which this task should be executed
-