Packages

final case class Opaque[A](marshal: () => A) extends Marshalling[A] with Product with Serializable

A Marshalling to an unknown MediaType and charset. Circumvents content negotiation.

Source
Marshaller.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Opaque
  2. Serializable
  3. Product
  4. Equals
  5. Marshalling
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Opaque(marshal: () => A)

Value Members

  1. def map[B](f: (A) => B): Opaque[B]
    Definition Classes
    OpaqueMarshalling
  2. val marshal: () => A
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. def toOpaque(charset: HttpCharset): Marshalling[A]

    Converts this marshalling to an opaque marshalling, i.e.

    Converts this marshalling to an opaque marshalling, i.e. a marshalling result that does not take part in content type negotiation. The given charset is used if this instance is a WithOpenCharset marshalling.

    Definition Classes
    OpaqueMarshalling