Class GenericJBossMarshaller
java.lang.Object
org.infinispan.commons.marshall.AbstractMarshaller
org.infinispan.jboss.marshalling.commons.AbstractJBossMarshaller
org.infinispan.jboss.marshalling.commons.GenericJBossMarshaller
- All Implemented Interfaces:
Marshaller
,StreamingMarshaller
A marshaller that makes use of JBoss Marshalling
to serialize and deserialize objects. This marshaller is oriented at external,
non-core Infinispan use, such as the Java Hot Rod client.
- Version:
- 4.1
- Author:
- Manik Surtani
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.infinispan.jboss.marshalling.commons.AbstractJBossMarshaller
AbstractJBossMarshaller.DebuggingExceptionListener
-
Field Summary
Fields inherited from class org.infinispan.jboss.marshalling.commons.AbstractJBossMarshaller
baseCfg, DEF_CLASS_COUNT, DEF_INSTANCE_COUNT, factory, log
Fields inherited from class org.infinispan.commons.marshall.AbstractMarshaller
marshallableTypeHints
-
Constructor Summary
ConstructorDescriptionGenericJBossMarshaller
(ClassLoader classLoader) GenericJBossMarshaller
(ClassLoader classLoader, ClassAllowList classAllowList) GenericJBossMarshaller
(ClassAllowList classAllowList) -
Method Summary
Modifier and TypeMethodDescriptionvoid
initialize
(ClassAllowList classAllowList) An optional method which allows an implementation to respect theClassAllowList
associated with the context, for example the EmbeddedCacheManager or RemoteCacheManager.Methods inherited from class org.infinispan.jboss.marshalling.commons.AbstractJBossMarshaller
finishObjectInput, finishObjectOutput, isMarshallable, isMarshallableCandidate, mediaType, objectFromByteBuffer, objectFromObjectStream, objectToBuffer, objectToObjectStream, start, startObjectInput, startObjectOutput, stop
Methods inherited from class org.infinispan.commons.marshall.AbstractMarshaller
getBufferSizePredictor, objectFromByteBuffer, objectFromInputStream, objectToBuffer, objectToByteBuffer, objectToByteBuffer
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.infinispan.commons.marshall.Marshaller
getBufferSizePredictor, objectFromByteBuffer, objectToBuffer, objectToByteBuffer, objectToByteBuffer
Methods inherited from interface org.infinispan.commons.marshall.StreamingMarshaller
objectFromInputStream
-
Constructor Details
-
GenericJBossMarshaller
public GenericJBossMarshaller() -
GenericJBossMarshaller
-
GenericJBossMarshaller
-
GenericJBossMarshaller
-
-
Method Details
-
initialize
Description copied from interface:Marshaller
An optional method which allows an implementation to respect theClassAllowList
associated with the context, for example the EmbeddedCacheManager or RemoteCacheManager.
-