JBoss Community

Re: JBPM 4.4 installation reports memory leaks

created by Michael Wohlfart in jBPM - View the full discussion

the "Dispatch Worker Threads" are probably created by  the JobExecutor,

you can try to call the jobExecutor's stop() method on shutdown, something like this:

 

Object object = processEngineImpl.get("jobExecutor");       
jobExecutor = (JobExecutor) object;
if (!jobExecutor.isActive()) {
   jobExecutor.stop(true);
}

 

no idea what the com.google.inject.internal.Finalizer thread ist for

Reply to this message by going to Community

Start a new discussion in jBPM at Community