| 15 | |
| 16 | type ( |
| 17 | Task interface { |
| 18 | TaskID() string |
| 19 | GetConfig() *TaskConfig |
| 20 | Start() |
| 21 | Stop() |
| 22 | SetTimeout(int64) |
| 23 | RunOnce() error |
| 24 | SetTaskService(service *TaskService) |
| 25 | Reset(conf *TaskConfig) error |
| 26 | CounterInfo() *CounterInfo |
| 27 | } |
| 28 | |
| 29 | ExceptionHandleFunc func(*TaskContext, error) |
| 30 |
no outgoing calls
no test coverage detected