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:
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 org.infinispan.commons.marshall.AdvancedExternalizer
USER_EXT_ID_MIN
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
writeObject
(ObjectOutput output, T object) Write the object reference to the stream.Methods inherited from class org.infinispan.commons.marshall.AbstractExternalizer
getId
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.AdvancedExternalizer
getTypeClasses
Methods inherited from interface org.infinispan.commons.marshall.Externalizer
readObject
-
Constructor Details
-
NoStateExternalizer
public NoStateExternalizer()
-
-
Method Details
-
writeObject
Description copied from interface:Externalizer
Write 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
-