Deferred objects
Deferred objects and their promises allow us to react to the completion of long-running tasks with a convenient syntax. They are discussed in detail in Chapter 11.
Object creation
Function |
Description |
---|---|
|
Returns a new deferred object |
|
Returns a promise object to be resolved when the given deferred objects are resolved |
Methods of deferred objects
Method |
Description |
---|---|
|
Sets the state of the object to resolved |
|
Sets the state of the object to resolved, while making the keyword |
|
Sets the state of the object to resolved |
|
Sets the state of the object to resolved, while making the keyword |
|
Returns a promise object corresponding to this deferred object |
Methods of promise objects
Method |
Description |
---|---|
|
Execute |
|
Execute |
|
Execute |
|
Execute |
|
Return |
|
Return |
|
Return a new promise object which is resolved when the original promise is, optionally after filtering the object's status through a function |