Читать книгу Practical Go - Amit Saha - Страница 27
Goroutines and Channels
ОглавлениеWe will be using goroutines and channels to implement concurrent execution in our applications. I recommend going through the section on Concurrency in “A Tour of Go”: https://tour.golang.org/concurrency/1
. Pay special attention to the example use of select statements to wait on multiple channel communication operations.