Interface RJob
-
- All Known Implementing Classes:
CalculateMeanQueueLength,CalculateResourceUtilization,CalculateResourceUtilizationEquidistant,DeleteRawQueueLengthMeasurements,FinalizeRProcessingJob,MergeBufferedDataFramesJob,PushBufferToRJob,StoreRDSFileJob
public interface RJob
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()voidprocess(RContext context)The work to be done by this job.
-
-
-
Method Detail
-
process
void process(RContext context)
The work to be done by this job. Should only be called by anRJobProcessor.
-
getName
String getName()
- Returns:
- the name of this job
-
-