Something that can go through a transition and is meant to be be completed, i.e either fulfilled or rejected.
no type hierarchy
no supertypes hierarchy
Methods | |
complete | Source Codeshared void complete(Value|Promise<Value>|Throwable val) Complete the promise: either fulfill or reject it |
fulfill | Source Codeshared formal void fulfill(Value|Promise<Value> val) Fulfills the promise with a value or a promise to the value. |
reject | Source Codeshared formal void reject(Throwable reason) Rejects the promise with a reason. |
Inherited Methods |
Methods inherited from: Object |