-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path14_senderSelect.go
More file actions
48 lines (40 loc) · 848 Bytes
/
14_senderSelect.go
File metadata and controls
48 lines (40 loc) · 848 Bytes
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
package main
import (
"fmt"
"math/rand"
"time"
)
//////////////////////////////////////////////
/// aliases
//////////////////////////////////////////////
var println = fmt.Println
var sprintf = fmt.Sprintf
var printf = fmt.Printf
//////////////////////////////////////////////
/// init
//////////////////////////////////////////////
func init() {
rand.Seed(time.Now().UTC().UnixNano())
}
//////////////////////////////////////////////
/// functions
//////////////////////////////////////////////
func boring(msg string) <-chan string {
c := make(chan string)
go func() {
for i := 0; ; i++ {
select {
case c <- sprintf("%s %d", msg, i):
ms := time.Duration(rand.Intn(1e3))
time.Sleep(ms * time.Millisecond)
}
}
}()
return c
}
func main() {
joe := boring("Joe")
for i := 0; i < 10; i++ {
println(<-joe)
}
}