sealed abstract class Marshaller[-A, +B] extends AnyRef
- Alphabetic
- By Inheritance
- Marshaller
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def apply(value: A)(implicit ec: ExecutionContext): Future[List[Marshalling[B]]]
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from Marshaller[A, B] toany2stringadd[Marshaller[A, B]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
- def ->[B](y: B): (Marshaller[A, B], B)
- Implicit
- This member is added by an implicit conversion from Marshaller[A, B] toArrowAssoc[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()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def compose[C](f: (C) => A): Marshaller[C, B]
- def composeWithEC[C](f: (ExecutionContext) => (C) => A): Marshaller[C, B]
- 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] toEnsuring[Marshaller[A, B]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: (Marshaller[A, B]) => Boolean): Marshaller[A, B]
- Implicit
- This member is added by an implicit conversion from Marshaller[A, B] toEnsuring[Marshaller[A, B]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean, msg: => Any): Marshaller[A, B]
- Implicit
- This member is added by an implicit conversion from Marshaller[A, B] toEnsuring[Marshaller[A, B]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean): Marshaller[A, B]
- Implicit
- This member is added by an implicit conversion from Marshaller[A, B] toEnsuring[Marshaller[A, B]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[C](f: (B) => C): Marshaller[A, C]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- 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 pekko.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 pekko.http.scaladsl.model.MediaType of the marshalling result with the given one. Note that not all wrappings are legal. f the underlying pekko.http.scaladsl.model.MediaType has constraints with regard to the charsets it allows the new pekko.http.scaladsl.model.MediaType must be compatible, since pekko-http will never recode entities. If the wrapping is illegal the scala.concurrent.Future produced by the resulting marshaller will contain a RuntimeException. - 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 pekko.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 pekko.http.scaladsl.model.MediaType of the marshalling result with the given one. Note that not all wrappings are legal. f the underlying pekko.http.scaladsl.model.MediaType has constraints with regard to the charsets it allows the new pekko.http.scaladsl.model.MediaType must be compatible, since pekko-http will never recode entities. If the wrapping is illegal the scala.concurrent.Future produced by the resulting marshaller will contain a RuntimeException.
Deprecated Value Members
- def formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from Marshaller[A, B] toStringFormat[Marshaller[A, B]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.
- def →[B](y: B): (Marshaller[A, B], B)
- Implicit
- This member is added by an implicit conversion from Marshaller[A, B] toArrowAssoc[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
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.