micro/runtime/local/process/process.go
Vasiliy Tolstov 06136312bb
regen files with never protoc (#6)
* regen files with never protoc
* rewrite import path

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-08-19 17:47:17 +03:00

44 lines
742 B
Go

// Package process executes a binary
package process
import (
"io"
"github.com/unistack-org/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
}