Interface UserJobResourcesAggregate
public interface UserJobResourcesAggregate
An aggregate of running jobs and memory used for a given user.
- Since:
- 4.0.0
-
Method Summary
Modifier and TypeMethodDescriptionGet the number of running jobs for the user.Get the total amount of memory used by all running jobs for the user.getUser()Get the user name.
-
Method Details
-
getUser
String getUser()Get the user name.- Returns:
- the user name
-
getRunningJobsCount
Long getRunningJobsCount()Get the number of running jobs for the user.- Returns:
- count of jobs
-
getUsedMemory
Long getUsedMemory()Get the total amount of memory used by all running jobs for the user.- Returns:
- amount of memory (in megabytes)
-