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
public abstract class NoStateExternalizer<T> extends AbstractExternalizer<T>
An externalizer that writes no state. It simply marshalls class information.- Since:
- 5.0
- Author:
- Galder ZamarreƱo
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.infinispan.commons.marshall.AdvancedExternalizer
USER_EXT_ID_MIN
-
-
Constructor Summary
Constructors Constructor Description NoStateExternalizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
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 interface org.infinispan.commons.marshall.AdvancedExternalizer
getTypeClasses
-
Methods inherited from interface org.infinispan.commons.marshall.Externalizer
readObject
-
-
-
-
Method Detail
-
writeObject
public void writeObject(ObjectOutput output, T object) throws IOException
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
-
-