SpecialRequestImpl

Concrete implementation of a SpecialRequest.

The template parameter T defines that kind of CarryingFiber is embedded into it.

Constructors

this
this(string context, CarryingFiber!T fiber)

Constructor.

this
this(string context, void delegate() dg)

Constructor.

Members

Functions

context
string context()

String context of the request. May be anything; highly request-specific.

fiber
Fiber fiber()

CarryingFiber embedded into the request.

Inherited Members

From SpecialRequest

context
string context()

String context of the request.

fiber
Fiber fiber()

Fiber embedded into the request.

Parameters

T

Type to instantiate the CarryingFiber with.

Meta