Interface ProgressEventListener
public interface ProgressEventListener
This listener is used to get notified whenever a singular action or job made any progress. Unlike the
TaskEventListener
this listener can only be registered at the instance which progress should be listened for.- Since:
- taskplanner 3.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
progressUpdate
(int progress) Called by theJob
orResultAction
that has made progress
-
Method Details
-
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
-