exechelper

package
v1.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 1, 2020 License: Apache-2.0 Imports: 1 Imported by: 6

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ExecParams

type ExecParams struct {
	CmdName string
	CmdArgs []string
	Timeout int
}

ExecParams parameters to execute a command

type ExecResult

type ExecResult struct {
	OutBuf   *bytes.Buffer
	ErrBuf   *bytes.Buffer
	ExitCode int
	Error    error
}

ExecResult result of executing a command

type Executor

type Executor interface {
	RunCommandWithOutputRaw(name string, args ...string) ([]byte, error)
	RunCommandWithOutput(name string, args ...string) (string, error)
	RunCommandWithOutputTimed(command []string, timeoutSeconds int) (string, error)

	RunCommand(params ExecParams) ExecResult
}

Executor is the interface for executing commands.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL