
com.hazelcast.stabilizer.worker.commands.StopCommand Maven / Gradle / Ivy
The newest version!
package com.hazelcast.stabilizer.worker.commands;
public class StopCommand extends Command {
public static final long serialVersionUID = 0l;
public String testId;
public long timeoutMs;
public StopCommand(String testId) {
this.testId = testId;
}
@Override
public String toString() {
return "StopCommand{" +
"testId='" + testId + '\'' +
", timeoutMs=" + timeoutMs +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy