use of org.camunda.bpm.container.impl.deployment.jobexecutor.StopManagedThreadPoolStep in project camunda-bpm-platform by camunda.
the class TomcatBpmPlatformBootstrap method undeployBpmPlatform.
protected void undeployBpmPlatform(LifecycleEvent event) {
final StandardServer server = (StandardServer) event.getSource();
containerDelegate.getServiceContainer().createUndeploymentOperation("undeploy BPM platform").addAttachment(TomcatAttachments.SERVER, server).addStep(new StopJobExecutorStep()).addStep(new StopManagedThreadPoolStep()).addStep(new StopProcessApplicationsStep()).addStep(new StopProcessEnginesStep()).addStep(new UnregisterBpmPlatformPluginsStep()).execute();
LOG.camundaBpmPlatformStopped(server.getServerInfo());
}
Aggregations