Package org.torquebox.core.runtime.processors

Examples of org.torquebox.core.runtime.processors.RuntimePoolInstaller


public class RuntimePoolInstallerTest extends AbstractDeploymentProcessorTestCase {
   
    @Before
    public void setUpDeployer() throws Throwable {
        appendDeployer( new RuntimePoolInstaller() );
    }
View Full Code Here


        processorTarget.addDeploymentProcessorCoreExtension.SUBSYSTEM_NAME, Phase.POST_MODULE, 1, new LoggingPropertiesWorkaroundProcessor() );
        processorTarget.addDeploymentProcessor( CoreExtension.SUBSYSTEM_NAME, Phase.POST_MODULE, 110, new RubyNamespaceContextSelectorProcessor() );
        processorTarget.addDeploymentProcessor( CoreExtension.SUBSYSTEM_NAME, Phase.POST_MODULE, 5000, new DatabaseProcessor() );

        processorTarget.addDeploymentProcessor( CoreExtension.SUBSYSTEM_NAME, Phase.INSTALL, 0, new RubyRuntimeFactoryInstaller() );
        processorTarget.addDeploymentProcessor( CoreExtension.SUBSYSTEM_NAME, Phase.INSTALL, 10, new RuntimePoolInstaller() );
        processorTarget.addDeploymentProcessor( CoreExtension.SUBSYSTEM_NAME, Phase.INSTALL, 20, new RuntimeRestartProcessor() );
        processorTarget.addDeploymentProcessor( CoreExtension.SUBSYSTEM_NAME, Phase.INSTALL, 9000, new RubyApplicationInstaller() );
    }
View Full Code Here

TOP

Related Classes of org.torquebox.core.runtime.processors.RuntimePoolInstaller

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.