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
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. All

Instance Constructors

  1. new ByteArraySerializer(system: ExtendedActorSystem)
  2. new ByteArraySerializer()
    Annotations
    @deprecated
    Deprecated

    (Since version 2.4) Use constructor with ExtendedActorSystem

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ByteArraySerializer to any2stringadd[ByteArraySerializer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ByteArraySerializer, B)
    Implicit
    This member is added by an implicit conversion from ByteArraySerializer to ArrowAssoc[ByteArraySerializer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. 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
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def ensuring(cond: (ByteArraySerializer) ⇒ Boolean, msg: ⇒ Any): ByteArraySerializer
    Implicit
    This member is added by an implicit conversion from ByteArraySerializer to Ensuring[ByteArraySerializer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (ByteArraySerializer) ⇒ Boolean): ByteArraySerializer
    Implicit
    This member is added by an implicit conversion from ByteArraySerializer to Ensuring[ByteArraySerializer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): ByteArraySerializer
    Implicit
    This member is added by an implicit conversion from ByteArraySerializer to Ensuring[ByteArraySerializer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): ByteArraySerializer
    Implicit
    This member is added by an implicit conversion from ByteArraySerializer to Ensuring[ByteArraySerializer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ByteArraySerializer to StringFormat[ByteArraySerializer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. 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
  18. 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
  19. final def fromBinary(bytes: Array[Byte], clazz: Class[_]): AnyRef

    Java API: deserialize with type hint

    Java API: deserialize with type hint

    Definition Classes
    Serializer
  20. final def fromBinary(bytes: Array[Byte]): AnyRef

    Java API: deserialize without type hint

    Java API: deserialize without type hint

    Definition Classes
    Serializer
  21. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  23. val identifier: Int
    Definition Classes
    ByteArraySerializerBaseSerializerSerializer
  24. 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
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. val system: ExtendedActorSystem
    Definition Classes
    ByteArraySerializerBaseSerializer
  31. def toBinary(o: AnyRef, buf: ByteBuffer): Unit

    Serializes the given object into the ByteBuffer.

    Serializes the given object into the ByteBuffer.

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

    Serializes the given object into an Array of Byte

    Serializes the given object into an Array of Byte

    Definition Classes
    ByteArraySerializerSerializer
  33. def toString(): String
    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def [B](y: B): (ByteArraySerializer, B)
    Implicit
    This member is added by an implicit conversion from ByteArraySerializer to ArrowAssoc[ByteArraySerializer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from ByteBufferSerializer

Inherited from BaseSerializer

Inherited from Serializer

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ByteArraySerializer to any2stringadd[ByteArraySerializer]

Inherited by implicit conversion StringFormat from ByteArraySerializer to StringFormat[ByteArraySerializer]

Inherited by implicit conversion Ensuring from ByteArraySerializer to Ensuring[ByteArraySerializer]

Inherited by implicit conversion ArrowAssoc from ByteArraySerializer to ArrowAssoc[ByteArraySerializer]

Ungrouped