CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
delay.base.d.ts13 linesDownload Raw Back to delay
1import { IDelay } from "./delay.interface";2import { IBackOffOptions } from "../options";3export declare abstract class Delay implements IDelay {4    private options;5    protected attempt: number;6    constructor(options: IBackOffOptions);7    apply(): Promise<unknown>;8    setAttemptNumber(attempt: number): void;9    private readonly jitteredDelay;10    private readonly delay;11    protected readonly numOfDelayedAttempts: number;12}13 
basant307/AI_Governance_Project · CoolFace