Class ByteBufferMarshalledKeyExternalizer
- java.lang.Object
-
- org.wildfly.clustering.marshalling.spi.ByteBufferMarshalledKeyExternalizer
-
- All Implemented Interfaces:
Externalizer<ByteBufferMarshalledKey<Object>>
public class ByteBufferMarshalledKeyExternalizer extends Object implements Externalizer<ByteBufferMarshalledKey<Object>>
Externalizer for aByteBufferMarshalledKey.- Author:
- Paul Ferraro
-
-
Constructor Summary
Constructors Constructor Description ByteBufferMarshalledKeyExternalizer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<ByteBufferMarshalledKey<Object>>getTargetClass()ByteBufferMarshalledKey<Object>readObject(ObjectInput input)voidwriteObject(ObjectOutput output, ByteBufferMarshalledKey<Object> value)-
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, ByteBufferMarshalledKey<Object> value) throws IOException
- Specified by:
writeObjectin interfaceExternalizer<ByteBufferMarshalledKey<Object>>- Throws:
IOException
-
readObject
public ByteBufferMarshalledKey<Object> readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Specified by:
readObjectin interfaceExternalizer<ByteBufferMarshalledKey<Object>>- Throws:
IOExceptionClassNotFoundException
-
getTargetClass
public Class<ByteBufferMarshalledKey<Object>> getTargetClass()
- Specified by:
getTargetClassin interfaceExternalizer<ByteBufferMarshalledKey<Object>>
-
-