Packages

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 asScalaEntityMarshaller
  2. by asScalaToResponseMarshaller
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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 HttpResponse with RequestEntity (B <: HttpResponse with RequestEntity).
    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. implicit val asScala: scaladsl.marshalling.Marshaller[A, B]
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def compose[C](f: Function[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: Function[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]): scaladsl.marshalling.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.

    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to scaladsl.marshalling.Marshaller[A, RequestEntity] performed by method asScalaEntityMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of RequestEntity (B <: RequestEntity).
    Definition Classes
    Marshaller
  31. def wrap[C, D >: B](newMediaType: MediaType)(f: (C) ⇒ A)(implicit mto: ContentTypeOverrider[D]): scaladsl.marshalling.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.

    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to ToResponseMarshaller[A] performed by method asScalaToResponseMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of HttpResponse (B <: HttpResponse).
    Definition Classes
    Marshaller
  32. def wrapWithEC[C, D >: B](newMediaType: MediaType)(f: (ExecutionContext) ⇒ (C) ⇒ A)(implicit cto: ContentTypeOverrider[D]): scaladsl.marshalling.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.

    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to scaladsl.marshalling.Marshaller[A, RequestEntity] performed by method asScalaEntityMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of RequestEntity (B <: RequestEntity).
    Definition Classes
    Marshaller
  33. def wrapWithEC[C, D >: B](newMediaType: MediaType)(f: (ExecutionContext) ⇒ (C) ⇒ A)(implicit cto: ContentTypeOverrider[D]): scaladsl.marshalling.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.

    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to ToResponseMarshaller[A] performed by method asScalaToResponseMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of HttpResponse (B <: HttpResponse).
    Definition Classes
    Marshaller
  34. 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 HttpResponse with RequestEntity (B <: HttpResponse with RequestEntity).
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def apply(value: A)(implicit ec: ExecutionContext): Future[List[Marshalling[RequestEntity]]]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to scaladsl.marshalling.Marshaller[A, RequestEntity] performed by method asScalaEntityMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of RequestEntity (B <: RequestEntity).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (marshaller: scaladsl.marshalling.Marshaller[A, RequestEntity]).apply(value)(ec)
    Definition Classes
    Marshaller
  2. def apply(value: A)(implicit ec: ExecutionContext): Future[List[Marshalling[HttpResponse]]]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to ToResponseMarshaller[A] performed by method asScalaToResponseMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of HttpResponse (B <: HttpResponse).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (marshaller: ToResponseMarshaller[A]).apply(value)(ec)
    Definition Classes
    Marshaller
  3. def compose[C](f: (C) ⇒ A): scaladsl.marshalling.Marshaller[C, RequestEntity]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to scaladsl.marshalling.Marshaller[A, RequestEntity] performed by method asScalaEntityMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of RequestEntity (B <: RequestEntity).
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (marshaller: scaladsl.marshalling.Marshaller[A, RequestEntity]).compose(f)
    Definition Classes
    Marshaller
  4. def compose[C](f: (C) ⇒ A): scaladsl.marshalling.Marshaller[C, HttpResponse]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to ToResponseMarshaller[A] performed by method asScalaToResponseMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of HttpResponse (B <: HttpResponse).
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (marshaller: ToResponseMarshaller[A]).compose(f)
    Definition Classes
    Marshaller
  5. def composeWithEC[C](f: (ExecutionContext) ⇒ (C) ⇒ A): scaladsl.marshalling.Marshaller[C, RequestEntity]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to scaladsl.marshalling.Marshaller[A, RequestEntity] performed by method asScalaEntityMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of RequestEntity (B <: RequestEntity).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (marshaller: scaladsl.marshalling.Marshaller[A, RequestEntity]).composeWithEC(f)
    Definition Classes
    Marshaller
  6. def composeWithEC[C](f: (ExecutionContext) ⇒ (C) ⇒ A): scaladsl.marshalling.Marshaller[C, HttpResponse]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to ToResponseMarshaller[A] performed by method asScalaToResponseMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of HttpResponse (B <: HttpResponse).
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (marshaller: ToResponseMarshaller[A]).composeWithEC(f)
    Definition Classes
    Marshaller
  7. def map[C](f: (RequestEntity) ⇒ C): scaladsl.marshalling.Marshaller[A, C]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to scaladsl.marshalling.Marshaller[A, RequestEntity] performed by method asScalaEntityMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of RequestEntity (B <: RequestEntity).
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (marshaller: scaladsl.marshalling.Marshaller[A, RequestEntity]).map(f)
    Definition Classes
    Marshaller
  8. def map[C](f: (HttpResponse) ⇒ C): scaladsl.marshalling.Marshaller[A, C]
    Implicit
    This member is added by an implicit conversion from Marshaller[A, B] to ToResponseMarshaller[A] performed by method asScalaToResponseMarshaller in akka.http.javadsl.marshalling.Marshaller. This conversion will take place only if B is a subclass of HttpResponse (B <: HttpResponse).
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (marshaller: ToResponseMarshaller[A]).map(f)
    Definition Classes
    Marshaller

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion asScalaEntityMarshaller from Marshaller[A, B] to scaladsl.marshalling.Marshaller[A, RequestEntity]

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

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