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