Last active
December 18, 2015 10:09
-
-
Save droxer/5766312 to your computer and use it in GitHub Desktop.
goroutine with multiplex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"math/rand" | |
"time" | |
) | |
func boring(msg string) <-chan string { | |
c := make(chan string) | |
go func() { | |
for i := 0; ; i++ { | |
c <- fmt.Sprintf("%s %d", msg, i) | |
time.Sleep(time.Duration(rand.Intn(1e3)) * time.Millisecond) | |
} | |
}() | |
return c | |
} | |
func fanIn(input1, input2 <-chan string) <-chan string { | |
c := make(chan string) | |
go func () { for { c <- <-input1 }}() | |
go func () { for { c <- <-input2 }}() | |
return c | |
} | |
func fanIn2(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 main() { | |
c := fanIn2(boring("Joe"), boring("Ann")) | |
for i := 0; i < 10; i++ { | |
fmt.Println(<-c) | |
} | |
fmt.Println("You are both boring; I'm leaving") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment