UNDOCUMENTED (Web Client only): Add handlers to be called when the Deferred object is either resolved or rejected.
UNDOCUMENTED (Unified Client only): Add handlers to be called when the Deferred object is rejected.
Optional
onRejected: ((reason) => U | PromiseLike<U>)UNDOCUMENTED (Web Client only) Add handlers to be called when the Deferred object is rejected.
Optional
onRejected: ((reason) => U | PromiseLike<U>)UNDOCUMENTED (Unified Client only): Add handlers to be called when the Deferred object is either resolved or rejected.
Attaches callbacks for the resolution and/or rejection of the Promise.
Optional
onFulfilled: ((value) => U | PromiseLike<U>)Optional
onRejected: ((error) => U | PromiseLike<U>)A Promise for the completion of which ever callback is executed.
Optional
onFulfilled: ((value) => U | PromiseLike<U>)Optional
onRejected: ((error) => void)Generated using TypeDoc
Interface for asynchronous promises. Based on JQuery Promise