Skip to main content

Interface: AsyncQueueOptions

Properties

clearTimeout

Optional clearTimeout: (id: number) => void

Type declaration

▸ (id): void

Parameters
NameType
idnumber
Returns

void


delayInMS

Optional delayInMS: number

How many mini-second to delay to run the next job


dropLast

Optional dropLast: boolean

Drop the last one in the queue or the first one


handleTimeout

Optional handleTimeout: () => Promise<void>

Type declaration

▸ (): Promise<void>

Returns

Promise<void>


setTimeout

Optional setTimeout: (callback: () => void, timeout: number) => number

Type declaration

▸ (callback, timeout): number

Parameters
NameType
callback() => void
timeoutnumber
Returns

number


size

Optional size: number

Max size of the queue, when it reaches this size, dropping mechanism starts. Drop the first/last one when overflow


throttleInMS

Optional throttleInMS: number

Throttle in mini-second


timeoutInMS

Optional timeoutInMS: number

Timeout in mini-second