public class ByteArraySerializer extends java.lang.Object implements Serializer
| Constructor and Description |
|---|
ByteArraySerializer() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
fromBinary(byte[] bytes,
scala.Option<java.lang.Class<?>> clazz)
Produces an object from an array of bytes, with an optional type-hint;
the class should be loaded using ActorSystem.dynamicAccess.
|
int |
identifier()
Completely unique value to identify this implementation of Serializer, used to optimize network traffic
Values from 0 to 16 is reserved for Akka internal usage
|
boolean |
includeManifest()
Returns whether this serializer needs a manifest in the fromBinary method
|
byte[] |
toBinary(java.lang.Object o)
Serializes the given object into an Array of Byte
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitfromBinary, fromBinarypublic boolean includeManifest()
SerializerincludeManifest in interface Serializerpublic int identifier()
Serializeridentifier in interface Serializerpublic byte[] toBinary(java.lang.Object o)
SerializertoBinary in interface Serializerpublic java.lang.Object fromBinary(byte[] bytes,
scala.Option<java.lang.Class<?>> clazz)
SerializerfromBinary in interface Serializer