
org.zeroturnaround.jenkins.updateModes.RollingRestarts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liverebel-deploy Show documentation
Show all versions of liverebel-deploy Show documentation
LiveRebel Plugin helps to run updates to your JEE containers faster. LiveRebel is a tool for hot updates without downtime,
lost sessions and OutOfMemoryErrors. You have to have a running LiveRebel Command Center to use this plugin.
The newest version!
package org.zeroturnaround.jenkins.updateModes;
import org.kohsuke.stapler.DataBoundConstructor;
import hudson.Extension;
public class RollingRestarts extends UpdateMode {
public final int sessionDrain;
public RollingRestarts() {sessionDrain = 0;}
@DataBoundConstructor
public RollingRestarts(int sessionDrain) {
this.sessionDrain = sessionDrain;
}
@Extension
public static final UpdateMode.UpdateModeDescriptor D = new UpdateMode.UpdateModeDescriptor(RollingRestarts.class);
@Override
public String toString() {
return "Rolling Restarts";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy