Object

wvlet.airframe.codec

PrimitiveCodec

Related Doc: package codec

Permalink

object PrimitiveCodec

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

Type Members

  1. trait PrimitiveCodec[A] extends MessageCodec[A]

    Permalink

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. object AnyCodec extends MessageCodec[Any]

    Permalink

    Codec for Any values.

    Codec for Any values. This only supports very basic types to enable packing/unpacking collections like Seq[Any], Map[Any, Any] at ease.

    Another option to implement AnyCodec is packing pairs of (type, value), but we will not take this approach as this will require many bytes to fully encode type names.

  5. object BooleanArrayCodec extends MessageCodec[Array[Boolean]]

    Permalink
  6. object BooleanCodec extends PrimitiveCodec[Boolean]

    Permalink
  7. object ByteArrayCodec extends MessageCodec[Array[Byte]]

    Permalink
  8. object ByteCodec extends PrimitiveCodec[Byte]

    Permalink
  9. object CharArrayCodec extends MessageCodec[Array[Char]]

    Permalink
  10. object CharCodec extends PrimitiveCodec[Char]

    Permalink
  11. object DoubleArrayCodec extends MessageCodec[Array[Double]]

    Permalink
  12. object DoubleCodec extends PrimitiveCodec[Double]

    Permalink
  13. object FloatArrayCodec extends MessageCodec[Array[Float]]

    Permalink
  14. object FloatCodec extends PrimitiveCodec[Float]

    Permalink
  15. object IntArrayCodec extends MessageCodec[Array[Int]]

    Permalink
  16. object IntCodec extends PrimitiveCodec[Int]

    Permalink
  17. object LongArrayCodec extends MessageCodec[Array[Long]]

    Permalink
  18. object LongCodec extends PrimitiveCodec[Long]

    Permalink
  19. object ShortArrayCodec extends MessageCodec[Array[Short]]

    Permalink
  20. object ShortCodec extends PrimitiveCodec[Short]

    Permalink
  21. object StringArrayCodec extends MessageCodec[Array[String]]

    Permalink
  22. object StringCodec extends PrimitiveCodec[String]

    Permalink
  23. object ValueCodec extends MessageCodec[Value]

    Permalink

    MessagePack value codec

  24. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  32. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  35. val primitiveArrayCodec: Map[Surface, MessageCodec[_ >: Array[Char] with Array[Short] with Array[Byte] with Array[String] with Array[Boolean] with Array[Double] with Array[Float] with Array[Long] with Array[Int] <: Array[_ >: Char with Short with Byte with String with Boolean with Double with Float with Long with Int]]]

    Permalink
  36. val primitiveCodec: Map[Surface, MessageCodec[_]]

    Permalink
  37. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped