mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
14.33.2019 53299b4114d02190d306c921d1685ebb3e6ad7c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package de.micromata.borgbutler;
 
import lombok.Getter;
 
/**
 * Statistics of all the job queues, especially the number of total queued and running jobs.
 * This is used e. g. by the client for showing a badge near to the menu entry "job monitor" with the number
 * of Jobs in the queues.
 */
public class BorgQueueStatistics {
    @Getter
    int numberOfRunningAndQueuedJobs = 0;
    @Getter
    int numberOfOldJobs = 0;
    @Getter
    int numberOfActiveQueues = 0;
    @Getter
    int totalNumberOfQueues = 0;
}