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 964c82e commit e80ff92Copy full SHA for e80ff92
drools-core/src/main/java/org/drools/core/time/JobContext.java
@@ -35,4 +35,8 @@ public interface JobContext extends Serializable {
35
default Optional<InternalKnowledgeRuntime> getInternalKnowledgeRuntime() {
36
return getWorkingMemory() != null ? Optional.ofNullable(getWorkingMemory().getKnowledgeRuntime()) : Optional.empty();
37
}
38
+
39
+ default boolean isNew() {
40
+ return false;
41
+ }
42
0 commit comments