Uses of Class
com.scivicslab.turingworkflow.plugins.ssh.Node.CommandResult
Packages that use Node.CommandResult
Package
Description
-
Uses of Node.CommandResult in com.scivicslab.turingworkflow.plugins.ssh
Methods in com.scivicslab.turingworkflow.plugins.ssh that return Node.CommandResultModifier and TypeMethodDescriptionNode.executeCommand(String command) Executes a command on the node.Node.executeCommand(String command, Node.OutputCallback callback) Executes a command on the node with real-time output callback.NodeInterpreter.executeCommand(String command) Executes a command on the remote node via SSH.NodeInterpreter.executeCommand(String command, Node.OutputCallback callback) Executes a command on the remote node via SSH with real-time output callback.Node.executeSudoCommand(String command) Executes a command with sudo privileges on the remote node.Node.executeSudoCommand(String command, Node.OutputCallback callback) Executes a command with sudo privileges on the remote node with real-time output callback.NodeInterpreter.executeSudoCommand(String command) Executes a command with sudo privileges on the remote node.NodeInterpreter.executeSudoCommand(String command, Node.OutputCallback callback) Executes a command with sudo privileges on the remote node with real-time output callback.Methods in com.scivicslab.turingworkflow.plugins.ssh with parameters of type Node.CommandResultModifier and TypeMethodDescriptionstatic StringActorHelper.combineOutput(Node.CommandResult result) Combines stdout and stderr from a CommandResult into a single string. -
Uses of Node.CommandResult in com.scivicslab.turingworkflow.plugins.ssh.mixin
Methods in com.scivicslab.turingworkflow.plugins.ssh.mixin that return Node.CommandResultModifier and TypeMethodDescriptionExecutes a command and returns the result.CommandExecutor.execute(String command, Node.OutputCallback callback) Executes a command and returns the result with output callback.Executes a command and returns the result.LocalCommandExecutor.execute(String command, Node.OutputCallback callback) Executes a command and returns the result with output callback.Executes a command and returns the result.SshCommandExecutor.execute(String command, Node.OutputCallback callback) Executes a command and returns the result with output callback.CommandExecutor.executeSudo(String command) Executes a command with sudo privileges.CommandExecutor.executeSudo(String command, Node.OutputCallback callback) Executes a command with sudo privileges and output callback.LocalCommandExecutor.executeSudo(String command) Executes a command with sudo privileges.LocalCommandExecutor.executeSudo(String command, Node.OutputCallback callback) Executes a command with sudo privileges and output callback.SshCommandExecutor.executeSudo(String command) Executes a command with sudo privileges.SshCommandExecutor.executeSudo(String command, Node.OutputCallback callback) Executes a command with sudo privileges and output callback.