LocalScheduler schedules task to a customized goroutine
| 37 | |
| 38 | // LocalScheduler schedules task to a customized goroutine |
| 39 | type LocalScheduler interface { |
| 40 | Schedule(Task) |
| 41 | } |
| 42 | |
| 43 | type Task func() |
| 44 |
no outgoing calls
no test coverage detected
searching dependent graphs…