NestedCallback

Constructors

this
this(Callback callback)
Undocumented in source.
this
this(NestedCallback nested)
Undocumented in source.

Members

Functions

failed
void failed(Exception x)
Undocumented in source. Be warned that the author may not have intended to support it.
getCallback
Callback getCallback()
Undocumented in source. Be warned that the author may not have intended to support it.
isNonBlocking
bool isNonBlocking()
Undocumented in source. Be warned that the author may not have intended to support it.
succeeded
void succeeded()
Undocumented in source. Be warned that the author may not have intended to support it.

Inherited Members

From Callback

NOOP
Callback NOOP;

Instance of Adapter that can be used when the callback methods need an empty implementation without incurring in the cost of allocating a new Adapter object.

succeeded
void succeeded()

<p> Callback invoked when the operation completes. </p>

failed
void failed(Exception x)

<p> Callback invoked when the operation fails. </p>

isNonBlocking
bool isNonBlocking()

@return True if the callback is known to never block the caller

Meta