-
Notifications
You must be signed in to change notification settings - Fork 1.2k
JsSetPromiseContinuationCallback
Limin Zhu edited this page Oct 9, 2015
·
1 revision
Sets a promise continuation callback function that is called by the context when a task needs to be queued for future execution
STDAPI_(JsErrorCode)
JsSetPromiseContinuationCallback(
_In_ JsPromiseContinuationCallback promiseContinuationCallback,
_In_opt_ void *callbackState);
- promiseContinuationCallback: The callback function being set.
- callbackState: User provided state that will be passed back to the callback.
The code JsNoError if the operation succeeded, a failure code otherwise.
Requires an active script context.
- Architecture Overview
- Building ChakraCore
- ChakraCore Code Structure
- Contributor Guidance
- Engineering Notes
- Embedding ChakraCore
- Testing ChakraCore
- Getting ChakraCore binaries
- Label Glossary
- Resources
- Roadmap / Release Notes
Want to contribute to this Wiki? Fork it and send a pull request!