mirror of
https://github.com/lzh-1625/go_process_manager.git
synced 2025-09-27 12:22:13 +08:00
22 lines
274 B
Go
22 lines
274 B
Go
package eum
|
|
|
|
type Condition int
|
|
|
|
const (
|
|
TaskCondRunning Condition = iota
|
|
TaskCondNotRunning
|
|
TaskCondException
|
|
TaskCondPass
|
|
)
|
|
|
|
type TaskOperation int
|
|
|
|
const (
|
|
TaskStart TaskOperation = iota
|
|
TaskStop
|
|
TaskStartWaitDone
|
|
TaskStopWaitDone
|
|
)
|
|
|
|
type CtxTaskTraceId struct{}
|