Uses of Class
com.scivicslab.actoriac.Node.CommandResult
Packages that use Node.CommandResult
-
Uses of Node.CommandResult in com.scivicslab.actoriac
Methods in com.scivicslab.actoriac 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.private Node.CommandResultNode.executeLocalCommand(String command, Node.OutputCallback callback) Executes a command locally using ProcessBuilder with real-time streaming.private Node.CommandResultNode.executeRemoteCommand(String command, Node.OutputCallback callback) Executes a command on the remote node via SSH using JSch with real-time streaming.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.actoriac with parameters of type Node.CommandResultModifier and TypeMethodDescriptionprivate StringNodeIIAR.combineOutput(Node.CommandResult result) Combines stdout and stderr into a single output string.private voidNodeIIAR.reportToAccumulator(Node.CommandResult result) Reports command result to the multiplexer accumulator actor if available. -
Uses of Node.CommandResult in com.scivicslab.actoriac.mixin
Methods in com.scivicslab.actoriac.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.LocalCommandExecutor.execute(String command, Node.OutputCallback callback) SshCommandExecutor.execute(String command, Node.OutputCallback 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) LocalCommandExecutor.executeSudo(String command, Node.OutputCallback callback) SshCommandExecutor.executeSudo(String command) SshCommandExecutor.executeSudo(String command, Node.OutputCallback callback) Methods in com.scivicslab.actoriac.mixin with parameters of type Node.CommandResultModifier and TypeMethodDescriptionprivate static com.scivicslab.pojoactor.core.ActionResultCommandExecutable.toActionResult(Node.CommandResult result) Converts a Node.CommandResult to ActionResult.