HookCallbacks

sealed external interface HookCallbacks(source)

Key events in the lifetime of a promise have been categorized into four areas: creation of a promise, before/after a continuation handler is called or around an await, and when the promise resolves or rejects.

Because promises are asynchronous resources whose lifecycle is tracked via the promise hooks mechanism, the init(), before(), after(), and settled() callbacks must not be async functions as they create more promises which would produce an infinite loop.

Since

v17.1.0, v16.14.0

Properties

Link copied to clipboard
abstract var after: After?
Link copied to clipboard
abstract var before: Before?
Link copied to clipboard
abstract var init: Init?
Link copied to clipboard
abstract var settled: Settled?