final case class DisabledJavaSerializer(system: ExtendedActorSystem) extends Serializer with ByteBufferSerializer with Product with Serializable

This Serializer is used when akka.actor.java-serialization = off

Source
Serializer.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DisabledJavaSerializer
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. ByteBufferSerializer
  7. Serializer
  8. AnyRef
  9. 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 DisabledJavaSerializer(system: ExtendedActorSystem)

Value Members

  1. 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
    DisabledJavaSerializerByteBufferSerializer
  2. 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
    DisabledJavaSerializerSerializer
  3. final def fromBinary(bytes: Array[Byte], clazz: Class[_]): AnyRef

    Java API: deserialize with type hint

    Java API: deserialize with type hint

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

    Java API: deserialize without type hint

    Java API: deserialize without type hint

    Definition Classes
    Serializer
  5. val identifier: Int
    Definition Classes
    DisabledJavaSerializerSerializer
  6. 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
    DisabledJavaSerializerSerializer
  7. val system: ExtendedActorSystem
  8. 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
    DisabledJavaSerializerSerializer
  9. def toBinary(o: AnyRef, buf: ByteBuffer): Unit

    Serializes the given object into the ByteBuffer.

    Serializes the given object into the ByteBuffer.

    Definition Classes
    DisabledJavaSerializerByteBufferSerializer