Interface PhysicalSlotRequestBulk
- All Known Implementing Classes:
SharingPhysicalSlotRequestBulk
public interface PhysicalSlotRequestBulk
Represents a bulk of physical slot requests.
-
Method Summary
Modifier and TypeMethodDescriptionvoidCancels all requests of this bulk.ReturnsAllocationIDs of fulfilled physical slot requests.ReturnsResourceProfiles of pending physical slot requests.
-
Method Details
-
getPendingRequests
Collection<ResourceProfile> getPendingRequests()ReturnsResourceProfiles of pending physical slot requests.If a request is pending, it is not fulfilled and vice versa.
getAllocationIdsOfFulfilledRequests()should not return a pending request. -
getAllocationIdsOfFulfilledRequests
Set<AllocationID> getAllocationIdsOfFulfilledRequests()ReturnsAllocationIDs of fulfilled physical slot requests.If a request is fulfilled, it is not pending and vice versa.
getPendingRequests()should not return a fulfilled request. -
cancel
Cancels all requests of this bulk.Canceled bulk is not valid and should not be used afterwards.
-