Package hudson.slaves

Examples of hudson.slaves.CloudRetentionStrategy


    @DataBoundConstructor
    public OpenShiftSlave(String name, String applicationUUID, String builderType, String builderSize, String builderPlatform,
                          String label, long builderTimeout, int executors, int slaveIdleTimeToLive) throws FormException, IOException {
        super(name, "Builder for " + label, null, executors, Mode.NORMAL,
                label, new OpenShiftComputerLauncher(),
                new CloudRetentionStrategy(slaveIdleTimeToLive), Collections
                        .<NodeProperty<?>>emptyList()
        );

        LOGGER.info("Creating slave with " + slaveIdleTimeToLive + "mins time-to-live");
View Full Code Here

TOP

Related Classes of hudson.slaves.CloudRetentionStrategy

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.