public interface ProgressListener
| Modifier and Type | Method and Description |
|---|---|
void |
errorOccurred(java.lang.String error)
called whenever an error, fatal or non-fatal, occurs during the operation.
|
void |
eventOccurred(java.lang.String action)
Called whenever a noteworthy event during the operation completes.
|
void |
valueChanged(double progress,
double limit)
Called when the progress is updated.
|
void valueChanged(double progress,
double limit)
progress - The progress made thus farlimit - The target value of the progress. This may change as the operation learns of things.void eventOccurred(java.lang.String action)
action - A string representing what happendvoid errorOccurred(java.lang.String error)
error - The string repsenting the error