Interface IDtoDeviceReservation
- All Known Implementing Classes:
DtoDeviceReservation
public interface IDtoDeviceReservation
A strech of time where a device must interrupt (i.e. pause) the currently executing setup, run or teardown of the current task. Only interruptible processes / fixedJobs may be allocated in a way that overlaps a DtoDeviceReservation. No special deviceState is required at this time; deviceState is not changed during this time.
-
Method Summary
Modifier and TypeMethodDescriptiongetEnd()End of the reservation (start smaller than end).getId()Unique identifier among all DtoDeviceReservationgetStart()Start of the reservation (start smaller than end).voidEnd of the reservation (start smaller than end).voidUnique identifier among all DtoDeviceReservationvoidStart of the reservation (start smaller than end).
-
Method Details
-
getId
String getId()Unique identifier among all DtoDeviceReservation -
setId
Unique identifier among all DtoDeviceReservation -
getStart
Long getStart()Start of the reservation (start smaller than end). Default is Timestamp::MIN -
setStart
Start of the reservation (start smaller than end). Default is Timestamp::MIN -
getEnd
Long getEnd()End of the reservation (start smaller than end). Default is Timestamp::MAX -
setEnd
End of the reservation (start smaller than end). Default is Timestamp::MAX
-