AsyncChainer.this

The base constructor which handles the optional creation of ManualEvent used in the case where this member of the AsyncChain has a delay (or depends on something with a delay).

  1. this(T obj, bool hasResolver)
    class AsyncChainer(T)
    this
    (
    T obj
    ,
    bool hasResolver = false
    )
  2. this(T obj, Duration delay, AsyncChainer!T parent)

Parameters

obj T

the object to wrap for chaining

hasResolver bool

if true, create a ManualEvent used for resolving

Meta