specialRequest

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

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

Parameters

T

Type to instantiate SpecialRequestImpl with.

context string

String context of the request.

dg void delegate
()

Delegate to create a CarryingFiber from.

Return Value

A new SpecialRequest that is in actually a SpecialRequestImpl.

Meta