Interface JobInfoAggregate
public interface JobInfoAggregate
An object to return aggregate data selected with regards to memory usage on a given Genie host.
- Since:
- 4.0.0
-
Method Summary
Modifier and TypeMethodDescriptionlongGet the number of jobs in any of the active states on this host.longGet the total amount of memory (in MB) that was allocated by jobs on this host.longGet the total amount of memory (in MB) that is actively in use by jobs on this host.
-
Method Details
-
getTotalMemoryAllocated
long getTotalMemoryAllocated()Get the total amount of memory (in MB) that was allocated by jobs on this host.- Returns:
- The total memory allocated
-
getTotalMemoryUsed
long getTotalMemoryUsed()Get the total amount of memory (in MB) that is actively in use by jobs on this host.- Returns:
- The total memory used
-
getNumberOfActiveJobs
long getNumberOfActiveJobs()Get the number of jobs in any of the active states on this host.- Returns:
- The number of active jobs
-