Class CalculateMeanQueueLength
- java.lang.Object
-
- edu.kit.ipd.sdq.eventsim.resources.rjobs.CalculateMeanQueueLength
-
- All Implemented Interfaces:
RJob
public class CalculateMeanQueueLength extends Object implements RJob
Calculates the mean queue length of resources, based on rawQUEUE_LENGTH
measurements already contained in the measurement data. Compared to raw queue lengths, mean queue lengths have two main advantages: First, they occupy considerably less main memory and/or storage space. Second, they are equidistantly spaced, allowing for calculating statistics like mean, quartiles and quantiles.
-
-
Constructor Summary
Constructors Constructor Description CalculateMeanQueueLength()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
void
process(RContext context)
The work to be done by this job.
-
-
-
Method Detail
-
process
public void process(RContext context)
Description copied from interface:RJob
The work to be done by this job. Should only be called by anRJobProcessor
.
-
-