|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object akka.serialization.ByteArraySerializer
public class ByteArraySerializer
This is a special Serializer that Serializes and deserializes byte arrays only, (just returns the byte array unchanged/uncopied)
Constructor Summary | |
---|---|
ByteArraySerializer()
|
Method Summary | |
---|---|
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 |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface akka.serialization.Serializer |
---|
fromBinary, fromBinary |
Constructor Detail |
---|
public ByteArraySerializer()
Method Detail |
---|
public boolean includeManifest()
Serializer
includeManifest
in interface Serializer
public int identifier()
Serializer
identifier
in interface Serializer
public byte[] toBinary(java.lang.Object o)
Serializer
toBinary
in interface Serializer
o
- (undocumented)
public java.lang.Object fromBinary(byte[] bytes, scala.Option<java.lang.Class<?>> clazz)
Serializer
fromBinary
in interface Serializer
bytes
- (undocumented)clazz
- (undocumented)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |