c

akka.serialization

ByteArraySerializer

class ByteArraySerializer extends BaseSerializer with ByteBufferSerializer

This is a special Serializer that Serializes and deserializes byte arrays only, (just returns the byte array unchanged/uncopied)

Source
Serializer.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ByteArraySerializer
  2. ByteBufferSerializer
  3. BaseSerializer
  4. Serializer
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ByteArraySerializer(system: ExtendedActorSystem)

Value Members

  1. final val SerializationIdentifiers: String("akka.actor.serialization-identifiers")

    Configuration namespace of serialization identifiers in the reference.conf.

    Configuration namespace of serialization identifiers in the reference.conf.

    Each serializer implementation must have an entry in the following format: akka.actor.serialization-identifiers."FQCN" = ID where FQCN is fully qualified class name of the serializer implementation and ID is globally unique serializer identifier number.

    Definition Classes
    BaseSerializer
  2. def fromBinary(buf: ByteBuffer, manifest: String): AnyRef

    Produces an object from a ByteBuffer, with an optional type-hint; the class should be loaded using ActorSystem.dynamicAccess.

    Produces an object from a ByteBuffer, with an optional type-hint; the class should be loaded using ActorSystem.dynamicAccess.

    Definition Classes
    ByteArraySerializerByteBufferSerializer
    Annotations
    @throws(classOf[NotSerializableException])
  3. def fromBinary(bytes: Array[Byte], clazz: Option[Class[_]]): AnyRef

    Produces an object from an array of bytes, with an optional type-hint; the class should be loaded using ActorSystem.dynamicAccess.

    Produces an object from an array of bytes, with an optional type-hint; the class should be loaded using ActorSystem.dynamicAccess.

    Definition Classes
    ByteArraySerializerSerializer
    Annotations
    @throws(classOf[NotSerializableException])
  4. final def fromBinary(bytes: Array[Byte], clazz: Class[_]): AnyRef

    Java API: deserialize with type hint

    Java API: deserialize with type hint

    Definition Classes
    Serializer
    Annotations
    @throws(classOf[NotSerializableException])
  5. final def fromBinary(bytes: Array[Byte]): AnyRef

    Java API: deserialize without type hint

    Java API: deserialize without type hint

    Definition Classes
    Serializer
  6. val identifier: Int

    Globally unique serialization identifier configured in the reference.conf.

    Globally unique serialization identifier configured in the reference.conf.

    See Serializer.identifier.

    Definition Classes
    BaseSerializerSerializer
  7. def includeManifest: Boolean

    Returns whether this serializer needs a manifest in the fromBinary method

    Returns whether this serializer needs a manifest in the fromBinary method

    Definition Classes
    ByteArraySerializerSerializer
  8. val system: ExtendedActorSystem

    Actor system which is required by most serializer implementations.

    Actor system which is required by most serializer implementations.

    Definition Classes
    ByteArraySerializerBaseSerializer
  9. def toBinary(o: AnyRef, buf: ByteBuffer): Unit

    Serializes the given object into the ByteBuffer.

    Serializes the given object into the ByteBuffer.

    Definition Classes
    ByteArraySerializerByteBufferSerializer
  10. def toBinary(o: AnyRef): Array[Byte]

    Serializes the given object into an Array of Byte.

    Serializes the given object into an Array of Byte.

    Note that the array must not be mutated by the serializer after it has been returned.

    Definition Classes
    ByteArraySerializerSerializer