Lines Matching full:channels
9 Channels allow you to pass references to data structures between goroutines.
31 each other on channels.
68 <step title="Creating channels" src="doc/codewalk/urlpoll.go:/Create our/,/complete/">
69 First, main makes two channels of *Resource, pending and complete.
74 The pending and complete channels are passed to each of the Poller
87 Now that it has the necessary channels, main launches a number of
88 Poller goroutines, passing the channels as arguments.
89 The channels provide the means of communication between the main, Poller, and
158 StateMonitor will loop forever, selecting on two channels:
177 goroutines and channels can be used to write expressive and concise concurrent