|
|
|
|
|
by Sajmani
4474 days ago
|
|
Yes, interrupt is better, and the article explains how to do that a few paragraphs later: for n := range in {
select {
case out <- n * n:
case <-done:
return
}
}
If you allow pipeline stages to interrupt their receive loop instead of draining the inbound channel, then _all_ send operations need to be governed by done. Otherwise the interrupted receive loop may block the upstream sender. |
|