Uses of Interface
jdk.management.resource.ResourceRequest
-
Packages that use ResourceRequest Package Description jdk.management.resource Resource tracking contexts, meters, and factories. -
-
Uses of ResourceRequest in jdk.management.resource
Classes in jdk.management.resource that implement ResourceRequest Modifier and Type Class Description class
BoundedMeter
Deprecated, for removal: This API element is subject to removal in a future version.Resource Management is deprecated for removal with no replacement.class
NotifyingMeter
Deprecated, for removal: This API element is subject to removal in a future version.Resource Management is deprecated for removal with no replacement.class
SimpleMeter
Deprecated, for removal: This API element is subject to removal in a future version.Resource Management is deprecated for removal with no replacement.class
ThrottledMeter
Deprecated, for removal: This API element is subject to removal in a future version.Resource Management is deprecated for removal with no replacement.Methods in jdk.management.resource that return ResourceRequest Modifier and Type Method Description ResourceRequest
SimpleMeter. getParent()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the parent ResourceRequest.ResourceRequest
ResourceContext. getResourceRequest(ResourceType type)
Deprecated, for removal: This API element is subject to removal in a future version.Returns the ResourceRequest in the ResourceContext that handles requests to allocate or release for the ResourceType.ResourceRequest
ResourceContextFactory. getResourceRequest(ResourceType type)
Deprecated, for removal: This API element is subject to removal in a future version.Returns the ResourceRequest for the current ResourceContext and ResourceType.Methods in jdk.management.resource with parameters of type ResourceRequest Modifier and Type Method Description static BoundedMeter
BoundedMeter. create(ResourceType type, long bound, ResourceRequest parent)
Deprecated, for removal: This API element is subject to removal in a future version.Returns a new BoundedMeter with the type, upper bound, and parent.static BoundedMeter
BoundedMeter. create(ResourceType type, long bound, ResourceRequest parent, ResourceApprover approver)
Deprecated, for removal: This API element is subject to removal in a future version.Returns a new BoundedMeter with the type, upper bound, parent, and approver.static NotifyingMeter
NotifyingMeter. create(ResourceType type, ResourceRequest parent, ResourceApprover approver)
Deprecated, for removal: This API element is subject to removal in a future version.Returns a new NotifyingMeter with the type, approver and parent approver.static SimpleMeter
SimpleMeter. create(ResourceType type, ResourceRequest parent)
Deprecated, for removal: This API element is subject to removal in a future version.Returns a new SimpleMeter with the ResourceType and allocating from a parent.static ThrottledMeter
ThrottledMeter. create(ResourceType type, long ratePerSec, ResourceRequest parent, ResourceApprover approver)
Deprecated, for removal: This API element is subject to removal in a future version.Create a new meter with a throttle rate, parent and approver.static ThrottledMeter
ThrottledMeter. create(ResourceType type, ResourceRequest parent, ResourceApprover approver)
Deprecated, for removal: This API element is subject to removal in a future version.Create a new meter with unlimited rate, parent and approver.Constructors in jdk.management.resource with parameters of type ResourceRequest Constructor Description BoundedMeter(ResourceType type, long bound, ResourceRequest parent, ResourceApprover approver)
Deprecated, for removal: This API element is subject to removal in a future version.Constructor of a BoundedMeter.NotifyingMeter(ResourceType type, ResourceRequest parent, ResourceApprover approver)
Deprecated, for removal: This API element is subject to removal in a future version.Constructor for subclasses.SimpleMeter(ResourceType type, ResourceRequest parent)
Deprecated, for removal: This API element is subject to removal in a future version.Constructor for subclasses.
-