aboutsummaryrefslogblamecommitdiffstats
path: root/packages/utils/src/interval_utils.ts
blob: 3d0561cd299a82ed3d8fda07b0babe1f37d1b52b (plain) (tree)
1
2
3
4
5
6
7
8
9
                              




                                      
                             
                                                    
                           

                       
                                




                                 
                                 
             
                       
                          
      
                                                                 
                                  
      
                                                                                                  











                                                   
  
export const intervalUtils = {
    setAsyncExcludingInterval(
        fn: () => Promise<void>,
        intervalMs: number,
        onError: (err: Error) => void,
    ): NodeJS.Timer {
        let isLocked = false;
        const intervalId = setInterval(async () => {
            if (isLocked) {
                return;
            } else {
                isLocked = true;
                try {
                    await fn();
                } catch (err) {
                    onError(err);
                }
                isLocked = false;
            }
        }, intervalMs);
        return intervalId;
    },
    clearAsyncExcludingInterval(intervalId: NodeJS.Timer): void {
        clearInterval(intervalId);
    },
    setInterval(fn: () => void, intervalMs: number, onError: (err: Error) => void): NodeJS.Timer {
        const intervalId = setInterval(() => {
            try {
                fn();
            } catch (err) {
                onError(err);
            }
        }, intervalMs);
        return intervalId;
    },
    clearInterval(intervalId: NodeJS.Timer): void {
        clearInterval(intervalId);
    },
};