Callback is a function that is returned by a Task. Callbacks are called in the same order that tasks are submitted.
func()
| 51 | // Callback is a function that is returned by a Task. Callbacks are |
| 52 | // called in the same order that tasks are submitted. |
| 53 | type Callback func() |
| 54 | |
| 55 | // Go schedules a task to be run in the stream's pool. All submitted tasks |
| 56 | // will be executed concurrently in worker goroutines. Then, the callbacks |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…