A Waker is used to signal to idle routines it's time to look for new work.
| 5 | |
| 6 | // A Waker is used to signal to idle routines it's time to look for new work. |
| 7 | type Waker interface { |
| 8 | // Wake returns a channel that's closed when the idle routine should wake up. |
| 9 | Wake() <-chan struct{} |
| 10 | } |
no outgoing calls
no test coverage detected