sealed abstract class Marshaller[-A, +B] extends AnyRef
- Source
- Marshaller.scala
- Alphabetic
- By Inheritance
- Marshaller
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
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] to any2stringadd[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] 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()
-
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( ... ) @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] to Ensuring[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] to Ensuring[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] to Ensuring[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] to Ensuring[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: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
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()
-
final
def
getClass(): Class[_]
- 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( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @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 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. -
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. -
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