public interface SequentialTask
Modifier and Type | Method and Description |
---|---|
boolean |
isDone()
Returns
true if the processing is complete, false otherwise. |
boolean |
iteration()
Asks the current task to perform one more processing iteration.
|
default boolean |
iteration(ProgressIndicator indicator) |
default void |
prepare()
Callback method that is assumed to be called before the processing.
|
default void |
stop()
Asks the current task to stop the processing (if any).
|
default void prepare()
boolean isDone()
true
if the processing is complete, false
otherwise.boolean iteration()
true
if the processing is done, false
otherwise.default boolean iteration(ProgressIndicator indicator)
default void stop()