diff --git a/releases/next/docs/interactionmanager.html b/releases/next/docs/interactionmanager.html index 79ab9e68843..89d0888fc93 100644 --- a/releases/next/docs/interactionmanager.html +++ b/releases/next/docs/interactionmanager.html @@ -20,7 +20,8 @@ earlier.

By default, queued tasks are executed together in a loop in one tasks will only be executed until the deadline (in terms of js event loop run time) approaches, at which point execution will yield via setTimeout, allowing events such as touches to start interactions and block queued tasks -from executing, making apps more responsive.

Methods #

static runAfterInteractions(task) #

Schedule a function to run after all interactions have completed.

static createInteractionHandle() #

Notify manager that an interaction has started.

static clearInteractionHandle(handle) #

Notify manager that an interaction has completed.

static setDeadline(deadline) #

A positive number will use setTimeout to schedule any tasks after the +from executing, making apps more responsive.

Methods #

static runAfterInteractions(task) #

Schedule a function to run after all interactions have completed. Returns a cancellable +"promise".

static createInteractionHandle() #

Notify manager that an interaction has started.

static clearInteractionHandle(handle) #

Notify manager that an interaction has completed.

static setDeadline(deadline) #

A positive number will use setTimeout to schedule any tasks after the eventLoopRunningTime hits the deadline value, otherwise all tasks will be executed in one setImmediate batch (default).

Properties #

Events: CallExpression #

addListener: CallExpression #