Skip to content

Commit

Permalink
fix javadocs
Browse files Browse the repository at this point in the history
Signed-off-by: Kaushal Kumar <[email protected]>
  • Loading branch information
kaushalmahi12 committed Sep 5, 2024
1 parent 448ea41 commit 3fc21be
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ public double getExcessUsage(QueryGroup queryGroup, double currentUsage, Workloa
*/
protected abstract double getNormalisedThreshold(QueryGroup queryGroup, WorkloadManagementSettings settings);

/**
* Utility class to provide query group level helper methods for CPU resource type
*/
public static class CpuUsageUtil extends ResourceUsageUtil {
private static final CpuUsageUtil instance = new CpuUsageUtil();

Expand All @@ -57,6 +60,9 @@ protected double getNormalisedThreshold(QueryGroup queryGroup, WorkloadManagemen
}
}

/**
* Utility class to provide query group level helper methods for Memory Resource
*/
public static class MemoryUsageUtil extends ResourceUsageUtil {
private static final MemoryUsageUtil instance = new MemoryUsageUtil();

Expand Down

0 comments on commit 3fc21be

Please sign in to comment.