All Downloads are FREE. Search and download functionalities are using the official Maven repository.

utils.progress-tracker.ts Maven / Gradle / Ivy

The newest version!
/**
 * Class to track the start and finish of work progress.
 */
export class ProgressTracker {
    private inProgressCount: number = 0;

    get isInProgress(): boolean{
        return this.inProgressCount > 0;
    }

    startProgress(): void {
        this.inProgressCount ++;
    }

    endProgress(): void {
        this.inProgressCount --;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy