AsyncChainer.this

Delayed constructor creates an AsyncChainer chain member which waits for the specified delay before resolving the current and next members of the chain.

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

Parameters

obj T

the object to wrap for chaining

delay Duration

a duration to delay before resolving

parent AsyncChainer!T

the parent member in the chain to depend on before resolving

Meta