com.outr.net.http

filter

package filter

Visibility
  1. Public
  2. All

Type Members

  1. trait HandlerFilter extends HttpHandler

    HandleFilter implements HttpHandler and support filtering and modifying of requests before ultimately being handled.

  2. case class HostFilter(host: String, handler: HttpHandler) extends HandlerFilter with Product with Serializable

    Allows mapping of a specific host to the wrapped handler.

  3. case class PathFilter(path: String, handler: HttpHandler, removePath: Boolean = true) extends HandlerFilter with Product with Serializable

    Allows specifying a base-path to direct traffic to another handler.

Ungrouped