use of org.camunda.bpm.container.impl.deployment.jobexecutor.StartManagedThreadPoolStep in project camunda-bpm-platform by camunda.
the class TomcatBpmPlatformBootstrap method deployBpmPlatform.
protected void deployBpmPlatform(LifecycleEvent event) {
final StandardServer server = (StandardServer) event.getSource();
containerDelegate.getServiceContainer().createDeploymentOperation("deploy BPM platform").addAttachment(TomcatAttachments.SERVER, server).addStep(new TomcatParseBpmPlatformXmlStep()).addStep(new DiscoverBpmPlatformPluginsStep()).addStep(new StartManagedThreadPoolStep()).addStep(new StartJobExecutorStep()).addStep(new PlatformXmlStartProcessEnginesStep()).execute();
LOG.camundaBpmPlatformSuccessfullyStarted(server.getServerInfo());
}
Aggregations