2015-11-05 23:29:53 +00:00
|
|
|
package containerd
|
|
|
|
|
|
|
|
type Container interface {
|
2015-11-06 00:40:57 +00:00
|
|
|
ID() string
|
2015-11-06 21:01:55 +00:00
|
|
|
Start() error
|
2015-11-06 00:40:57 +00:00
|
|
|
Pid() (int, error)
|
2015-11-06 23:42:32 +00:00
|
|
|
// Process() Process
|
2015-11-05 23:29:53 +00:00
|
|
|
SetExited(status int)
|
|
|
|
Delete() error
|
|
|
|
}
|