Interface IProcessingUnitRunnable
-
- All Superinterfaces:
java.lang.Runnable
- All Known Implementing Classes:
AbstractProcessingUnitRunnable,ProcessingUnitRunnableImpl,TestProcessingUnitRunnable
public interface IProcessingUnitRunnable extends java.lang.RunnableDefines the runnable processing unit. It holds beside the processing unit class the parameters and its context.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetId()Get the runnable idlonggetNumberOfUnitsToProcess()Get number of units to processIProcessStatusgetProcessStatus()Get the process status
-
-
-
Method Detail
-
getId
java.lang.String getId()
Get the runnable id- Returns:
- the runnable id
-
getProcessStatus
IProcessStatus getProcessStatus()
Get the process status- Returns:
- the process status
-
getNumberOfUnitsToProcess
long getNumberOfUnitsToProcess()
Get number of units to process- Returns:
- the number of units to process
-
-