public interface JIPipeRunnable extends Runnable
Modifier and Type | Method and Description |
---|---|
JIPipeProgressInfo |
getProgressInfo()
The info object that allows communication with the run
|
String |
getTaskLabel()
A name for the runnable
|
default void |
onFinished(Consumer<RunWorkerFinishedEvent> function)
Registers an event subscriber into
JIPipeRunnerQueue that listens for when
this run finishes |
default void |
onInterrupted(Consumer<RunWorkerInterruptedEvent> function)
Registers an event subscriber into
JIPipeRunnerQueue that listens for when
this run is interrupted |
default void |
onProgress(Consumer<RunWorkerProgressEvent> function)
Registers an event subscriber into
JIPipeRunnerQueue that listens for when
this run is progressing |
default void |
onStarted(Consumer<RunWorkerStartedEvent> function)
Registers an event subscriber into
JIPipeRunnerQueue that listens for when
this run is started |
void |
setProgressInfo(JIPipeProgressInfo progressInfo)
Sets the progress info of this runnable
|
JIPipeProgressInfo getProgressInfo()
void setProgressInfo(JIPipeProgressInfo progressInfo)
progressInfo
- the info objectString getTaskLabel()
default void onFinished(Consumer<RunWorkerFinishedEvent> function)
JIPipeRunnerQueue
that listens for when
this run finishesfunction
- the method to execute when the run finishes (successfully or not successfully)default void onInterrupted(Consumer<RunWorkerInterruptedEvent> function)
JIPipeRunnerQueue
that listens for when
this run is interruptedfunction
- the method to execute when the run is interrupted (due to error or user cancel)default void onStarted(Consumer<RunWorkerStartedEvent> function)
JIPipeRunnerQueue
that listens for when
this run is startedfunction
- the method to execute when the run startsdefault void onProgress(Consumer<RunWorkerProgressEvent> function)
JIPipeRunnerQueue
that listens for when
this run is progressingfunction
- the method to execute when the run progressesCopyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.