-
Notifications
You must be signed in to change notification settings - Fork 0
/
boring.go
52 lines (46 loc) · 859 Bytes
/
boring.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package main
//based on Concurrency patterns (Google IO 2012)
import (
"fmt"
"math/rand"
)
func main() {
quit := make(chan string)
j := boring("Joe", quit)
b := boring("Bob", quit)
for i := rand.Intn(20); i >= 0; i-- {
fmt.Println(<-j)
fmt.Println(<-b)
}
quit <- "Bye!"
}
func fanIn(input1, input2 <-chan string) <-chan string {
c := make(chan string)
go func() {
for {
select {
case s := <-input1:
c <- s
case s := <-input2:
c <- s
}
}
}()
return c
}
func boring(msg string, quit chan string) <-chan string { // Returns receive-only channel of strings.
c := make(chan string)
go func() {
for i := 0; ; i++ {
select {
case c <- fmt.Sprintf("%s %d", msg, i):
case <-quit:
cleanup()
quit <- "See you!"
return
}
}
}()
return c // Return the channel to the caller.
}
func cleanup() {}