specialRequest

Instantiates a SpecialRequestImpl in the guise of a SpecialRequest with the implicit type T as payload.

  1. SpecialRequest specialRequest(string context, CarryingFiber!T fiber)
    specialRequest
    (
    T
    )
    (
    const string context
    ,)
  2. SpecialRequest specialRequest(string context, void delegate() dg)

Parameters

T

Type to instantiate SpecialRequestImpl with.

context string

String context of the request.

fiber CarryingFiber!T

CarryingFiber to embed into the request.

Return Value

A new SpecialRequest that is in actually a SpecialRequestImpl.

Meta