Packages

trait Encoder[A] extends Serializable

Interface for all Encoder implementations.

Allows to encode instances of A as protobuf3 serialized message.

Encoding can be done with Automatic strategy with encoders.AutoEncoder, or by specifying a custom protobuf mapping with encoders.CustomMappingEncoder.

Self Type
Encoder[A]
Annotations
@implicitNotFound( "No Encoder found for type ${A}." )
Source
Encoder.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Encoder
  2. Serializable
  3. Serializable
  4. AnyRef
  5. 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

Abstract Value Members

  1. abstract def encode(a: A, output: CodedOutputStream): Unit

    Write the value A in the protobuf OutputStream.

Concrete 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 Encoder[A] to any2stringadd[Encoder[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Encoder[A], B)
    Implicit
    This member is added by an implicit conversion from Encoder[A] to ArrowAssoc[Encoder[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. final def contramap[B](f: (B) ⇒ A): Encoder[B]

    Create a new Encoder by applying a function to a value of type B before writing as an A.

  9. def encodeAsByteBuffer(a: A): ByteBuffer

    Encode the value A and return the result as a ByteBuffer.

  10. def encodeAsBytes(a: A): Array[Byte]

    Encode the value A and return the result in Array[Byte].

  11. def encodeAsStream(a: A): ByteArrayOutputStream

    Encode the value A into an ByteArrayOutputStream.

  12. def ensuring(cond: (Encoder[A]) ⇒ Boolean, msg: ⇒ Any): Encoder[A]
    Implicit
    This member is added by an implicit conversion from Encoder[A] to Ensuring[Encoder[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (Encoder[A]) ⇒ Boolean): Encoder[A]
    Implicit
    This member is added by an implicit conversion from Encoder[A] to Ensuring[Encoder[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ Any): Encoder[A]
    Implicit
    This member is added by an implicit conversion from Encoder[A] to Ensuring[Encoder[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): Encoder[A]
    Implicit
    This member is added by an implicit conversion from Encoder[A] to Ensuring[Encoder[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Encoder[A] to StringFormat[Encoder[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  31. def [B](y: B): (Encoder[A], B)
    Implicit
    This member is added by an implicit conversion from Encoder[A] to ArrowAssoc[Encoder[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Encoder[A] to any2stringadd[Encoder[A]]

Inherited by implicit conversion StringFormat from Encoder[A] to StringFormat[Encoder[A]]

Inherited by implicit conversion Ensuring from Encoder[A] to Ensuring[Encoder[A]]

Inherited by implicit conversion ArrowAssoc from Encoder[A] to ArrowAssoc[Encoder[A]]

Ungrouped