Skip to content

Commit

Permalink
[KIE-1492] Allow KieRuntimeBuilder to also create and provide Statele…
Browse files Browse the repository at this point in the history
…ssKieSession
  • Loading branch information
mariofusco committed Sep 26, 2024
1 parent 7d7b406 commit f284865
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import org.drools.core.time.TimerService;
import org.jbpm.workflow.instance.impl.CodegenNodeInstanceFactoryRegistry;
import org.kie.api.KieBase;
import org.kie.api.command.Command;
import org.kie.api.event.process.ProcessEventListener;
import org.kie.api.event.process.ProcessEventManager;
import org.kie.api.event.rule.AgendaEventListener;
Expand Down Expand Up @@ -124,6 +125,11 @@ public KieRuntime getKieRuntime() {
throw new UnsupportedOperationException();
}

@Override
public <T> T execute(Command<T> command) {
throw new UnsupportedOperationException();
}

@Override
public <T extends SessionClock> T getSessionClock() {
return null;
Expand Down

0 comments on commit f284865

Please sign in to comment.