shared by TaskContext and SubTaskContext
| 27 | |
| 28 | // shared by TaskContext and SubTaskContext |
| 29 | type defaultExecContext struct { |
| 30 | context.BasicRes |
| 31 | ctx gocontext.Context |
| 32 | name string |
| 33 | data interface{} |
| 34 | total int |
| 35 | current int64 |
| 36 | mu sync.Mutex |
| 37 | progress chan plugin.RunningProgress |
| 38 | } |
| 39 | |
| 40 | func newDefaultExecContext( |
| 41 | ctx gocontext.Context, |
nothing calls this directly
no outgoing calls
no test coverage detected