Interface ReProvideInit

interface ReProvideInit {
    concurrency?: number;
    interval?: number;
    maxQueueSize?: number;
    threshold?: number;
    validity?: number;
}

Properties

concurrency?: number

How many re-provide operations to run simultaneously

Default

10
interval?: number

How often to check which records need re-providing in ms

Default

3_600_000 (1 hour)
maxQueueSize?: number

How long to let the re-provide queue grow

Default

16_384
threshold?: number

How long before the record expiry to re-provide in ms

Default

86_400_000 (24 hours)
validity?: number

How long provider records are valid for in ms

Default

172_800_000 (48 hours)