public interface ProgressListener extends EventListener
Modifier and Type | Method and Description |
---|---|
void |
start(ProgressEvent event)
Signals that an operation has started.
|
void |
step(ProgressEvent event)
Signals that an operation has progressed.
|
void |
stop(ProgressEvent event)
Signals that an operation has finished.
|
void start(@NonNull ProgressEvent event)
event
- Event object describing this event.void step(@NonNull ProgressEvent event)
event
- Event object describing this event.void stop(@NonNull ProgressEvent event)
event
- Event object describing this event.