Interface ProgressEventListener
-
public interface ProgressEventListenerThis listener is used to get notified whenever a singular action or job made any progress. Unlike theTaskEventListenerthis 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 voidprogressUpdate(int progress)Called by theJoborResultActionthat has made progress
-
-
-
Method Detail
-
progressUpdate
void progressUpdate(int progress)
Called by theJoborResultActionthat has made progress- Parameters:
progress- the progress value, the value is of the interval [0..100]- Since:
- taskplanner 3.0
-
-