|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||
java.lang.Object | +--JobStats
A JobStats object is used to record statistics about a Job that has completed.
| Field Summary | |
(package private) int |
cpuUsed
Total cpu used (in ms) |
(package private) int |
elapsedTime
Total elapsed time from start to end |
(package private) int |
ioUsed
Total I/O operations |
(package private) java.lang.String |
name
Name of the job |
(package private) double |
penalty
Penalty ratio (elapsed over sum of I/O time and CPU time) |
| Constructor Summary | |
(package private) |
JobStats(java.lang.String name,
int cpuUsed,
int ioUsed,
int elapsedTime)
Create a JobStats object. |
| Method Summary | |
java.lang.String |
toString()
Convert to string. |
| Methods inherited from class java.lang.Object |
|
| Field Detail |
java.lang.String name
int cpuUsed
int ioUsed
int elapsedTime
double penalty
| Constructor Detail |
JobStats(java.lang.String name,
int cpuUsed,
int ioUsed,
int elapsedTime)
name - the name of the jobcpuUsed - the total cpu utilization (in ms)ioUses - the number of I/O operations done by this jobelapsedTime - elapsed time from arrival to completion| Method Detail |
public java.lang.String toString()
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||