Class SingletonMapExternalizer
- java.lang.Object
-
- org.wildfly.clustering.marshalling.spi.util.SingletonMapExternalizer
-
- All Implemented Interfaces:
Externalizer<Map<Object,Object>>
public class SingletonMapExternalizer extends Object implements Externalizer<Map<Object,Object>>
- Author:
- Paul Ferraro
-
-
Constructor Summary
Constructors Constructor Description SingletonMapExternalizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<Map<Object,Object>>getTargetClass()Map<Object,Object>readObject(ObjectInput input)voidwriteObject(ObjectOutput output, Map<Object,Object> map)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.wildfly.clustering.marshalling.Externalizer
size
-
-
-
-
Method Detail
-
writeObject
public void writeObject(ObjectOutput output, Map<Object,Object> map) throws IOException
- Specified by:
writeObjectin interfaceExternalizer<Map<Object,Object>>- Throws:
IOException
-
readObject
public Map<Object,Object> readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Specified by:
readObjectin interfaceExternalizer<Map<Object,Object>>- Throws:
IOExceptionClassNotFoundException
-
getTargetClass
public Class<Map<Object,Object>> getTargetClass()
- Specified by:
getTargetClassin interfaceExternalizer<Map<Object,Object>>
-
-