You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package task
-
- type Task interface {
- TryMerge(other Task) bool // 尝试将other任务与自身合并,如果成功返回true
- Execute(ctx *ExecuteContext, myOpts ExecuteOption)
- }
|