Class/Object

com.avsystem.commons.serialization

SimpleValueOutput

Related Docs: object SimpleValueOutput | package serialization

Permalink

class SimpleValueOutput extends Output

An Output for GenCodec which serializes data into plain Scala objects.

- "lists" are represented as Scala Lists - "objects" are represented as String-keyed Scala Maps - simple values (strings, numbers, booleans, byte arrays) are represented as themselves, unchanged

In other words, serialized value yield by SimpleValueOutput is a Scala object guaranteed to be one of: - null - Int - Long - Double - BigInt - BigDecimal - Boolean - String - Array[Byte] - scala.collection.Seq[Any] where every element is also one of the listed types - scala.collection.Map[String,Any] where every value is also one of the listed types

Such format is often useful as an intermediate representation. For example, it can be later safely passed to standard Java serialization. However, for performance reasons it's recommended to implement dedicated Input and Output for the final format (e.g. binary or JSON).

Linear Supertypes
Output, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SimpleValueOutput
  2. Output
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SimpleValueOutput(consumer: (Any) ⇒ Unit)

    Permalink
  2. new SimpleValueOutput(consumer: (Any) ⇒ Unit, newObjectRepr: ⇒ Builder[(String, Any), commons.BMap[String, Any]], newListRepr: ⇒ Builder[Any, commons.BSeq[Any]])

    Permalink

    consumer

    consumer of serialized value, which is guaranteed to meet the above rules

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. def legacyOptionEncoding: Boolean

    Permalink

    This ugly workaround has been introduced when standard Option encoding changed from zero-or-one element list encoding to unwrapped-or-null encoding which effectively disallowed serializing null and Some(null).

    This ugly workaround has been introduced when standard Option encoding changed from zero-or-one element list encoding to unwrapped-or-null encoding which effectively disallowed serializing null and Some(null). If some Output implementation still wants to use the list encoding, it may do it by overriding this method and returning true.

    Definition Classes
    Output
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. def writeBigDecimal(bigDecimal: BigDecimal): Unit

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  22. def writeBigInt(bigInt: BigInt): Unit

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  23. def writeBinary(binary: Array[Byte]): Unit

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  24. def writeBoolean(boolean: Boolean): Unit

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  25. def writeByte(byte: Byte): Unit

    Permalink
    Definition Classes
    Output
  26. def writeChar(char: Char): Unit

    Permalink
    Definition Classes
    Output
  27. def writeDouble(double: Double): Unit

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  28. def writeFloat(float: Float): Unit

    Permalink
    Definition Classes
    Output
  29. def writeInt(int: Int): Unit

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  30. def writeList(): ListOutput

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  31. def writeLong(long: Long): Unit

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  32. def writeNull(): Unit

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  33. def writeObject(): ObjectOutput

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  34. def writeShort(short: Short): Unit

    Permalink
    Definition Classes
    Output
  35. def writeString(str: String): Unit

    Permalink
    Definition Classes
    SimpleValueOutputOutput
  36. def writeTimestamp(millis: Long): Unit

    Permalink
    Definition Classes
    Output
  37. def writeUnit(): Unit

    Permalink
    Definition Classes
    Output

Inherited from Output

Inherited from AnyRef

Inherited from Any

Ungrouped