Re: [go-nuts] Channels question

2019-09-29 Thread Kurtis Rader
On Sun, Sep 29, 2019 at 2:04 PM Joe McGuckin wrote: > If i have multiple goroutines listening on the same channel, then write > something to the channel, will all goroutines receive the value, or only > the ‘next’ available goroutine (as determined by the scheduler) > Channels are queues: https:

[go-nuts] Channels question

2019-09-29 Thread Joe McGuckin
If i have multiple goroutines listening on the same channel, then write something to the channel, will all goroutines receive the value, or only the ‘next’ available goroutine (as determined by the scheduler) Thanks, Joe -- You received this message because you are subscribed to the Google Gr