setInterval
Source Location: packages/core/src/util.ts#L208
Signature
declare function setIntervalImplementation<T extends any[]>( callback: (...args: T) => void, delayMs?: number, subscription?: Disposable, ...args: T ): void
Disposable-based alternative to built-in setInterval.
Parameters
| Parameter | Type | Description | |
|---|---|---|---|
| callback | | The callback to schedule. | |
| delayMs | | The amount of delay. | |
| subscription | | If this is disposed then the request will be cancelled. | |
| args | | The arguments to send to the callback. |