Context

wvlet.airframe.http.Http$.Context
abstract class Context extends HttpContext[Request, Response, Future]

Attributes

Graph
Supertypes
trait HttpContext[Request, Response, Future]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

override protected def backend: HttpBackend[Request, Response, Future]

Attributes

Definition Classes

Inherited methods

def apply(request: Request): F[Resp]

Process the preceding filters and get the resulting Future[Response]

Process the preceding filters and get the resulting Future[Response]

Attributes

Inherited from:
HttpContext
def getThreadLocal[A](key: String): Option[A]

Get a thread local parameter

Get a thread local parameter

Attributes

Inherited from:
HttpContext
def setThreadLocal[A](key: String, value: A): Unit

Set a thread local parameter

Set a thread local parameter

Attributes

Inherited from:
HttpContext
def withThreadLocalStore(body: => Future[Response]): F[Resp]

Attributes

Inherited from:
HttpContext