Uses of Class
cambio.simulator.resources.cpu.CPUProcess
Packages that use CPUProcess
Package
Description
Classes that directly relate to microservices, like operations, instances or instance modification events.
CPU simulation classes.
Classes for scheduling CPU processes.
-
Uses of CPUProcess in cambio.simulator.entities.microservice
Methods in cambio.simulator.entities.microservice with parameters of type CPUProcessModifier and TypeMethodDescriptionprotected void
MicroserviceInstance.submitProcessToCPU
(CPUProcess newProcess) -
Uses of CPUProcess in cambio.simulator.resources.cpu
Methods in cambio.simulator.resources.cpu with parameters of type CPUProcessModifier and TypeMethodDescriptionint
CPUProcess.compareTo
(CPUProcess other) Natural sorting is based on left over demand.void
CPU.submitProcess
(CPUProcess process) Schedules the given process to be executed.Constructors in cambio.simulator.resources.cpu with parameters of type CPUProcessModifierConstructorDescriptionComputationBurstCompletedEvent
(desmoj.core.simulator.Model model, String name, boolean showInTrace, CPUProcess endingProcess, CPU owner, int completedDemand) Constructs a newComputationBurstCompletedEvent
. -
Uses of CPUProcess in cambio.simulator.resources.cpu.scheduling
Methods in cambio.simulator.resources.cpu.scheduling that return types with arguments of type CPUProcessModifier and TypeMethodDescriptionabstract org.javatuples.Pair<CPUProcess,
Integer> CPUProcessScheduler.retrieveNextProcess()
Pulls the nextCPUProcess
to handle and its assigned time/work quantum.org.javatuples.Pair<CPUProcess,
Integer> FIFOScheduler.retrieveNextProcess()
Pulls the next Process to handle and how much demand should be accomplished.org.javatuples.Pair<CPUProcess,
Integer> LIFOScheduler.retrieveNextProcess()
Pulls the nextCPUProcess
to handle and its assigned time/work quantum.org.javatuples.Pair<CPUProcess,
Integer> MultiLevelFeedbackQueueScheduler.retrieveNextProcess()
Pulls the next Process to handle and how much demand should be accomplished.org.javatuples.Pair<CPUProcess,
Integer> RoundRobinScheduler.retrieveNextProcess()
Pulls the next Process to handle and its assigned time/work quantum.org.javatuples.Pair<CPUProcess,
Integer> ShortestJobNextScheduler.retrieveNextProcess()
Pulls the nextCPUProcess
to handle and its assigned time/work quantum.abstract org.javatuples.Pair<CPUProcess,
Integer> CPUProcessScheduler.retrieveNextProcessNoReschedule()
Pulls the nextCPUProcess
to handle and its assigned time/work quantum.
Prevents automatic rescheduling of the process like in round-robin scheduling.org.javatuples.Pair<CPUProcess,
Integer> FIFOScheduler.retrieveNextProcessNoReschedule()
Pulls the next Process to handle and its assigned time/work quantum.
Prevents automatic rescheduling of the process like in round-robin scheduling.org.javatuples.Pair<CPUProcess,
Integer> LIFOScheduler.retrieveNextProcessNoReschedule()
Pulls the nextCPUProcess
to handle and its assigned time/work quantum.
Prevents automatic rescheduling of the process like in round-robin scheduling.org.javatuples.Pair<CPUProcess,
Integer> MultiLevelFeedbackQueueScheduler.retrieveNextProcessNoReschedule()
Pulls the next Process to handle and its assigned time/work quantum.
Prevents automatic rescheduling of the process like in round robin scheduling.org.javatuples.Pair<CPUProcess,
Integer> RoundRobinScheduler.retrieveNextProcessNoReschedule()
Interface used by Multi Level Feedback queues.org.javatuples.Pair<CPUProcess,
Integer> ShortestJobNextScheduler.retrieveNextProcessNoReschedule()
Pulls the nextCPUProcess
to handle and its assigned time/work quantum.
Prevents automatic rescheduling of the process like in round-robin scheduling.Methods in cambio.simulator.resources.cpu.scheduling with parameters of type CPUProcessModifier and TypeMethodDescriptionabstract void
CPUProcessScheduler.enterProcess
(CPUProcess process) Enters the process into the scheduling queue.void
FIFOScheduler.enterProcess
(CPUProcess process) Enters the process into the scheduling queue.void
LIFOScheduler.enterProcess
(CPUProcess process) Enters the process into the scheduling queue.void
MultiLevelFeedbackQueueScheduler.enterProcess
(CPUProcess process) Enters the process into the scheduling queue.void
RoundRobinScheduler.enterProcess
(CPUProcess process) Enters the process into the scheduling queue.void
ShortestJobNextScheduler.enterProcess
(CPUProcess process) Enters the process into the scheduling queue.