-
Notifications
You must be signed in to change notification settings - Fork 1
/
generator4.go
57 lines (49 loc) · 999 Bytes
/
generator4.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
53
54
55
56
57
package main
import (
"fmt"
"math/rand"
"time"
)
// channel chain like this:
//
// input1 \
// \
// -- output
// /
// input2 /
// there is a wait channel used to synchronize
// so the output is fixed sequence
type Message struct {
str string
wait chan bool
}
// function returns a receive-only channel of strings
func boring(msg string) <-chan Message {
c := make(chan Message)
wait:=make(chan bool)
go func() {
for i := 0; ; i++ {
c <- Message{fmt.Sprintf("%s %d", msg, i), wait}
time.Sleep(time.Duration(rand.Intn(1e3)) * time.Millisecond)
wait <- true // block
}
}()
return c
}
func fanIn(input1, input2 <-chan Message) <-chan Message {
c := make(chan Message)
go func() { for {c <- <-input1 } }()
go func() { for {c <- <-input2 } }()
return c
}
func main() {
c := fanIn(boring("Alice"), boring("Bob"))
for i := 0; i < 20; i++ {
msg1:=<-c
fmt.Println(msg1.str)
<-msg1.wait
msg2:=<-c
fmt.Println(msg2.str)
<-msg2.wait
}
}