sealed abstract class Marshaller[-A, +B] extends AnyRef

Source
Marshaller.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Marshaller
  2. AnyRef
  3. 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 apply(value: A)(implicit ec: ExecutionContext): Future[List[Marshalling[B]]]

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 Marshaller[A, B] to any2stringadd[Marshaller[A, B]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Marshaller[A, B], B)
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to ArrowAssoc[Marshaller[A, B]] performed by method ArrowAssoc in scala.Predef. This conversion will take place only if B is a subclass of MessageEntity (B <: MessageEntity).
    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[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def compose[C](f: (C) ⇒ A): Marshaller[C, B]
  9. def composeWithEC[C](f: (ExecutionContext) ⇒ (C) ⇒ A): Marshaller[C, B]
  10. def ensuring(cond: (Marshaller[A, B]) ⇒ Boolean, msg: ⇒ Any): Marshaller[A, B]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to Ensuring[Marshaller[A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (Marshaller[A, B]) ⇒ Boolean): Marshaller[A, B]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to Ensuring[Marshaller[A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): Marshaller[A, B]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to Ensuring[Marshaller[A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): Marshaller[A, B]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to Ensuring[Marshaller[A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to StringFormat[Marshaller[A, B]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  18. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def map[C](f: (B) ⇒ C): Marshaller[A, C]
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  30. def wrap[C, D >: B](newMediaType: MediaType)(f: (C) ⇒ A)(implicit mto: ContentTypeOverrider[D]): Marshaller[C, D]

    Reuses this Marshaller's logic to produce a new Marshaller from another type C which overrides the akka.http.scaladsl.model.MediaType of the marshalling result with the given one.

    Reuses this Marshaller's logic to produce a new Marshaller from another type C which overrides the akka.http.scaladsl.model.MediaType of the marshalling result with the given one. Note that not all wrappings are legal. f the underlying akka.http.scaladsl.model.MediaType has constraints with regard to the charsets it allows the new akka.http.scaladsl.model.MediaType must be compatible, since akka-http will never recode entities. If the wrapping is illegal the scala.concurrent.Future produced by the resulting marshaller will contain a RuntimeException.

  31. def wrapWithEC[C, D >: B](newMediaType: MediaType)(f: (ExecutionContext) ⇒ (C) ⇒ A)(implicit cto: ContentTypeOverrider[D]): Marshaller[C, D]

    Reuses this Marshaller's logic to produce a new Marshaller from another type C which overrides the akka.http.scaladsl.model.MediaType of the marshalling result with the given one.

    Reuses this Marshaller's logic to produce a new Marshaller from another type C which overrides the akka.http.scaladsl.model.MediaType of the marshalling result with the given one. Note that not all wrappings are legal. f the underlying akka.http.scaladsl.model.MediaType has constraints with regard to the charsets it allows the new akka.http.scaladsl.model.MediaType must be compatible, since akka-http will never recode entities. If the wrapping is illegal the scala.concurrent.Future produced by the resulting marshaller will contain a RuntimeException.

  32. def [B](y: B): (Marshaller[A, B], B)
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to ArrowAssoc[Marshaller[A, B]] performed by method ArrowAssoc in scala.Predef. This conversion will take place only if B is a subclass of MessageEntity (B <: MessageEntity).
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Marshaller[A, B] to any2stringadd[Marshaller[A, B]]

Inherited by implicit conversion StringFormat from Marshaller[A, B] to StringFormat[Marshaller[A, B]]

Inherited by implicit conversion Ensuring from Marshaller[A, B] to Ensuring[Marshaller[A, B]]

Inherited by implicit conversion ArrowAssoc from Marshaller[A, B] to ArrowAssoc[Marshaller[A, B]]

Ungrouped