schedulePromise
Calls the supplied function using a Promise
.
Signature
schedulePromise(
fn: ((...arguments: any[]) => void) | undefined,
...arguments: any[]
): number
Parameters
Name | Type | Optional | Description |
---|---|---|---|
fn | ((...arguments: any[]) => void) | undefined | No | Specifies the function to execute. |
arguments | any[] | Yes | Optional arguments which should be passed to the callee. |
Return value
Returns the call handle. Can be used to cancel the call using cancelPromise
or scheduleAndCancelPromise
.