Trace: • Workflow engine Documentation
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
workflow:documentation [2022/03/30 22:06] robot |
workflow:documentation [2022/03/30 22:14] (current) robot |
||
---|---|---|---|
Line 728: | Line 728: | ||
/** | /** | ||
* Runs the function. | * Runs the function. | ||
- | * If the function returns <code>true</code>, the function is fully done, and the workflow jumps to the next step. | + | * If the function returns {@code true}, the function is fully done, and the workflow jumps to the next step. |
* In case there are more than one next step, the finish function of IWorkflowStep has to be called. | * In case there are more than one next step, the finish function of IWorkflowStep has to be called. | ||
* Otherwise, an exception will be thrown. | * Otherwise, an exception will be thrown. | ||
- | * If finish is already called, it does not matter whether <code>true</code> or <code>false</code> is returned. | + | * If finish is already called, it does not matter whether {@code true} or {@code false} is returned. |
* | * | ||
- | * @return <code>true</code>, if the function is done. | + | * @return {@code true}, if the function is done. |
* @throws Throwable if function fails. | * @throws Throwable if function fails. | ||
*/ | */ |