Package de.uka.ipd.sdq.scheduler.sensors
Interface IPassiveResourceSensor
public interface IPassiveResourceSensor
Observer of a passive resource.
-
Method Summary
Modifier and TypeMethodDescriptionvoidacquire(ISchedulableProcess process, long num) The given process has successfully acquired num instances of the passive resource.voidrelease(ISchedulableProcess process, long num) The given process has released num instances of the passive resource.voidrequest(ISchedulableProcess process, long num) The given process has requested num instances of the passive resource but not yet acquired them.
-
Method Details
-
request
The given process has requested num instances of the passive resource but not yet acquired them. -
acquire
The given process has successfully acquired num instances of the passive resource. -
release
The given process has released num instances of the passive resource.
-