p

org.http4s

servlet

package servlet

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

Type Members

  1. abstract class AbstractAsyncListener extends AsyncListener
    Attributes
    protected
  2. class AsyncHttp4sServlet[F[_]] extends Http4sServlet[F]
  3. class BlockingHttp4sServlet[F[_]] extends Http4sServlet[F]
  4. final case class BlockingServletIo[F[_]](chunkSize: Int)(implicit evidence$2: Async[F]) extends ServletIo[F] with Product with Serializable

    Use standard blocking reads and writes.

    Use standard blocking reads and writes.

    This is more CPU efficient per request than NonBlockingServletIo, but is likely to require a larger request thread pool for the same load.

  5. type BodyWriter[F[_]] = (Response[F]) ⇒ F[Unit]
    Attributes
    protected
  6. abstract class Http4sServlet[F[_]] extends HttpServlet
  7. final case class NonBlockingServletIo[F[_]](chunkSize: Int)(implicit evidence$3: Async[F]) extends ServletIo[F] with Product with Serializable

    Use non-blocking reads and writes.

    Use non-blocking reads and writes. Available only on containers that support Servlet 3.1.

    This can support more concurrent connections on a smaller request thread pool than BlockingServletIo, but consumes more CPU per request. It is also known to cause IllegalStateExceptions in the logs under high load up through at least Tomcat 8.0.15. These appear to be harmless, but are operationally annoying.

  8. final case class ServletApiVersion(major: Int, minor: Int) extends Ordered[ServletApiVersion] with Product with Serializable
  9. abstract class ServletContainer[F[_]] extends ServerBuilder[F]
  10. sealed abstract class ServletIo[F[_]] extends AnyRef

    Determines the mode of I/O used for reading request bodies and writing response bodies.

  11. trait DefaultFilter extends Filter
    Annotations
    @deprecated
    Deprecated

    (Since version 0.23.13) Not releated to http4s. Will be removed from public API

Value Members

  1. val DefaultChunkSize: Int
    Attributes
    protected
  2. object AsyncHttp4sServlet extends Serializable
  3. object BlockingHttp4sServlet extends Serializable
  4. object ServletApiVersion extends Serializable
  5. object ServletContainer

Deprecated Value Members

  1. def NullBodyWriter[F[_]](implicit F: Async[F]): BodyWriter[F]
    Attributes
    protected
    Annotations
    @deprecated
    Deprecated

    (Since version 0.23.12) Use nullBodyWriter with Applicative constraint

Inherited from AnyRef

Inherited from Any

Ungrouped