Interface ProgressEventListener
-
public interface ProgressEventListener
This listener is used to get notified whenever a singular action or job made any progress. Unlike theTaskEventListener
this listener can only be registered at the instance which progress should be listened for.- Since:
- taskplanner 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
progressUpdate(int progress)
Called by theJob
orResultAction
that has made progress
-
-
-
Method Detail
-
progressUpdate
void progressUpdate(int progress)
Called by theJob
orResultAction
that has made progress- Parameters:
progress
- the progress value, the value is of the interval [0..100]- Since:
- taskplanner 3.0
-
-