Task is a task that is submitted to the stream. Submitted tasks will be executed concurrently. It returns a callback that will be called after the task has completed.
func() Callback
| 47 | // be executed concurrently. It returns a callback that will be called after |
| 48 | // the task has completed. |
| 49 | type Task func() Callback |
| 50 | |
| 51 | // Callback is a function that is returned by a Task. Callbacks are |
| 52 | // called in the same order that tasks are submitted. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…