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 = false)
  2. this(T obj, Duration delay, AsyncChainer!T parent = null)
    class AsyncChainer(T)
    this
    (
    T obj
    ,
    Duration delay
    ,
    AsyncChainer!T parent = null
    )

Parameters

obj
Type: T

the object to wrap for chaining

delay
Type: Duration

a duration to delay before resolving

parent
Type: AsyncChainer!T

the parent member in the chain to depend on before resolving

Meta