We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e1e4f1 commit fe7042dCopy full SHA for fe7042d
src/main/java/io/iworkflow/core/WorkflowState.java
@@ -5,6 +5,8 @@
5
import io.iworkflow.core.communication.Communication;
6
import io.iworkflow.core.persistence.Persistence;
7
8
+import javax.annotation.Nullable;
9
+
10
import java.lang.reflect.Method;
11
12
public interface WorkflowState<I> {
@@ -93,6 +95,7 @@ default String getStateId() {
93
95
* - BackoffCoefficient: 2
94
96
* @return the optional options
97
*/
98
+ @Nullable
99
default WorkflowStateOptions getStateOptions() {
100
return null;
101
}
0 commit comments