constructor()

in src/server/utils/valueReloader.ts [15:21]


    constructor(initial: T, load: () => Promise<T>, ttlSec: number) {
        this.value = initial;
        this.load = load;
        this.ttlSec = ttlSec;

        this.refresh();
    }