source: DCWoRMS/trunk/src/simulator/stats/SimulationStatistics.java @ 477

Revision 477, 1.3 KB checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package simulator.stats;
2
3public interface SimulationStatistics {
4       
5        public static final String TASK_WAITING_TIME = "Task waiting time";
6
7        public static final String MAKESPAN = "Makespan";
8       
9        public static final String TASK_COMPLETION_TIME = "Task completion time";
10       
11        public static final String DELAYED_TASKS = "Delayed tasks";
12
13        public static final String TASK_TARDINESS = "Task tardiness";
14
15        public static final String TASK_LATENESS = "Task lateness";
16       
17        public static final String TASK_START_TIME = "Task start time";
18
19        public static final String TASK_FLOW_TIME = "Task flow time";
20
21        public static final String TASK_EXECUTION_TIME = "Task execution time";
22
23        public static final String FAILED_REQUESTS = "Failed requests (tasks)";
24       
25        public static final String RESOURCES_TOTAL_LOAD = "Resources total load";
26
27        public static final String RESOURCES_RESERVATION_LOAD = "Resources reservation load";
28       
29        public static final String ENERGY_USAGE = "Energy usage";
30
31        public static final String RESOURCES_QUEUE_LENGTH = "Resources queue length";
32
33       
34        public void generateStatistics();
35       
36        public void gatherTaskStatistics();
37       
38
39       
40        public void saveSimulationStatistics();
41       
42
43
44        public String getOutputFolderName();
45
46        public GSSAccumulator getStats(String resourcesTotalLoad);
47
48        public boolean accumulatedStats();
49
50       
51}
Note: See TracBrowser for help on using the repository browser.