Package

org.http4s

servlet

Permalink

package servlet

Linear Supertypes
AnyRef, Any
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

    Permalink
    Attributes
    protected
  2. final case class BlockingServletIo(chunkSize: Int) extends ServletIo with Product with Serializable

    Permalink

    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.

  3. type BodyWriter = (Response) ⇒ Task[Unit]

    Permalink
    Attributes
    protected
  4. trait DefaultFilter extends Filter

    Permalink

    Mainly a convenience for our servlet examples, but, hey, why not.

  5. class Http4sServlet extends HttpServlet

    Permalink
  6. final case class NonBlockingServletIo(chunkSize: Int) extends ServletIo with Product with Serializable

    Permalink

    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.

  7. final case class ServletApiVersion(major: Int, minor: Int) extends Ordered[ServletApiVersion] with Product with Serializable

    Permalink
  8. trait ServletContainer extends ServerBuilder with AsyncTimeoutSupport

    Permalink
  9. sealed trait ServletIo extends AnyRef

    Permalink

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

Value Members

  1. val DefaultChunkSize: Int

    Permalink
    Attributes
    protected
  2. val NullBodyWriter: BodyWriter

    Permalink
    Attributes
    protected
  3. object ServletApiVersion extends Serializable

    Permalink
  4. object ServletContainer

    Permalink
  5. package syntax

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped