o

org.http4s.server.middleware

EntityLimiter

object EntityLimiter

Source
EntityLimiter.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EntityLimiter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class EntityTooLarge(limit: Long) extends Exception with NoStackTrace with Product with Serializable

Value Members

  1. val DefaultMaxEntitySize: Long
  2. def apply[F[_], G[_], B](http: Kleisli[F, Request[G], B], limit: Long = DefaultMaxEntitySize)(implicit G: ApplicativeThrow[G]): Kleisli[F, Request[G], B]
  3. def httpApp[F[_]](httpApp: HttpApp[F], limit: Long = DefaultMaxEntitySize)(implicit arg0: ApplicativeThrow[F]): HttpApp[F]
  4. def httpRoutes[F[_]](httpRoutes: HttpRoutes[F], limit: Long = DefaultMaxEntitySize)(implicit arg0: ApplicativeThrow[F]): HttpRoutes[F]