Thanks for the advise. It is making sense now.
However, I am getting null for jobs to be executed
I am placing this code after I signal for next transition>
JobExecutor jobExecutor = jbpmContext.getJbpmConfiguration().getJobExecutor();
if (jobExecutor==null) {
throw new JbpmException("no job executor configured in resource ");
}
jobExecutor.start();
I get in my console the following info
[main] DEBUG JobExecutor : starting thread group 'null'...
Is this the wrong way of extracting the jobs from the DB?