Package com.elastisys.scale.commons.net.ssh

Examples of com.elastisys.scale.commons.net.ssh.SshCommandRequester


        this.machine.getId());

    long delayInMillis = this.retryDelay * 1000;

    RetryableRequest<SshCommandResult> sshCommand = new RetryableRequest<SshCommandResult>(
        new SshCommandRequester(publicIp, this.sshPort, this.sshUser,
            this.sshKeyPath, this.command), new RetrySshCommand(
            this.maxRetries, delayInMillis), this.taskName);
    SshCommandResult response = sshCommand.call();
    return response;
  }
View Full Code Here

TOP

Related Classes of com.elastisys.scale.commons.net.ssh.SshCommandRequester

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.