sealed abstract class StrictForm extends AnyRef

Read-only abstraction on top of application/x-www-form-urlencoded and multipart form data, allowing joint unmarshalling access to either kind, **if** you supply both, a akka.http.scaladsl.unmarshalling.FromStringUnmarshaller as well as a akka.http.scaladsl.unmarshalling.FromEntityUnmarshaller for the target type T. Note: In order to allow for random access to the field values streamed multipart form data are strictified! Don't use this abstraction on potentially unbounded forms (e.g. large file uploads).

If you only need to consume one type of form (application/x-www-form-urlencoded *or* multipart) then simply unmarshal directly to the respective form abstraction (akka.http.scaladsl.model.FormData or akka.http.scaladsl.model.Multipart.FormData) rather than going through StrictForm.

Simple usage example:

val strictFormFuture = Unmarshal(entity).to[StrictForm]
val fooFieldUnmarshalled: Future[T] =
  strictFormFuture flatMap { form =>
    Unmarshal(form field "foo").to[T]
  }
Source
StrictForm.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StrictForm
  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. Protected

Abstract Value Members

  1. abstract def fields: Seq[(String, Field)]

Concrete Value Members

  1. def field(name: String): Option[Field]