Promise

<p>A callback abstraction that handles completed/failed events of asynchronous operations.</p>

@param <T> the type of the context object

Members

Functions

Failed
void Failed(Exception x)

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

Succeeded
void Succeeded(T result)
Undocumented in source.
Succeeded
void Succeeded()

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

See Also

Meta