Skip to main content

Class: TimerManager

@sapphire/timer-manager.TimerManager

Manages timers so that this application can be cleanly exited

Hierarchy

  • any

    TimerManager

Constructors

constructor

new TimerManager(): TimerManager

Returns

TimerManager

Inherited from

null.constructor

Properties

storedIntervals

Private Static storedIntervals: Set<Timeout>

A set of intervals to clear on destroy

Defined in

lib/TimerManager.ts:13


storedTimeouts

Private Static storedTimeouts: Set<Timeout>

A set of timeouts to clear on destroy

Defined in

lib/TimerManager.ts:8

Methods

clearInterval

clearInterval(interval): void

Clears an internal created through this class

Parameters

NameTypeDescription
intervalTimeoutThe interval to clear

Returns

void

Defined in

lib/TimerManager.ts:55


clearTimeout

clearTimeout(timeout): void

Clears a timeout created through this class

Parameters

NameTypeDescription
timeoutTimeoutThe timeout to clear

Returns

void

Defined in

lib/TimerManager.ts:34


destroy

destroy(): void

Clears running timeouts and intervals created through this class so NodeJS can gracefully exit

Returns

void

Defined in

lib/TimerManager.ts:63


setInterval

setInterval<A>(fn, delay, ...args): Timeout

Creates an interval gets cleared when destroyed

Type parameters

NameType
Aunknown

Parameters

NameTypeDescription
fn(...args: A[]) => voidcallback function
delaynumberamount of time before running the callback
...argsA[]additional arguments to pass back to the callback

Returns

Timeout

Defined in

lib/TimerManager.ts:45


setTimeout

setTimeout<A>(fn, delay, ...args): Timeout

Creates a timeout gets cleared when destroyed

Type parameters

NameType
Aunknown

Parameters

NameTypeDescription
fn(...args: A[]) => voidcallback function
delaynumberamount of time before running the callback
...argsA[]additional arguments to pass back to the callback

Returns

Timeout

Defined in

lib/TimerManager.ts:21