micro/runtime/local/process/process.go
Asim Aslam fae4151027
Add a build package (#1926)
* Add a build package

* fix go mod

* package tar
2020-08-11 16:51:58 +01:00

44 lines
738 B
Go

// Package process executes a binary
package process
import (
"io"
"github.com/micro/go-micro/v3/build"
)
// Process manages a running process
type Process interface {
// Executes a process to completion
Exec(*Binary) error
// Creates a new process
Fork(*Binary) (*PID, error)
// Kills the process
Kill(*PID) error
// Waits for a process to exit
Wait(*PID) error
}
type Binary struct {
// Package containing executable
Package *build.Package
// The env variables
Env []string
// Args to pass
Args []string
// Initial working directory
Dir string
}
// PID is the running process
type PID struct {
// ID of the process
ID string
// Stdin
Input io.Writer
// Stdout
Output io.Reader
// Stderr
Error io.Reader
}