Class NoStateExternalizer<T>
java.lang.Object
org.infinispan.commons.marshall.AbstractExternalizer<T>
org.infinispan.commons.marshall.exts.NoStateExternalizer<T>
- All Implemented Interfaces:
Serializable, AdvancedExternalizer<T>, Externalizer<T>
- Direct Known Subclasses:
CRC16.Externalizer, MurmurHash3.Externalizer, RemovedFilter.Externalizer
An externalizer that writes no state. It simply marshalls class information.
- Since:
- 5.0
- Author:
- Galder Zamarreño
- See Also:
-
Field Summary
Fields inherited from interface AdvancedExternalizer
USER_EXT_ID_MIN -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidwriteObject(ObjectOutput output, T object) Write the object reference to the stream.Methods inherited from class AbstractExternalizer
getIdMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface AdvancedExternalizer
getTypeClassesMethods inherited from interface Externalizer
readObject
-
Constructor Details
-
NoStateExternalizer
public NoStateExternalizer()
-
-
Method Details
-
writeObject
Description copied from interface:ExternalizerWrite the object reference to the stream.- Parameters:
output- the object output to write toobject- the object reference to write- Throws:
IOException- if an I/O error occurs
-