Skip to content

Instantly share code, notes, and snippets.

@jcarmena
Last active June 9, 2016 22:27
Show Gist options
  • Save jcarmena/13b6ee6da73a0ef11de1 to your computer and use it in GitHub Desktop.
Save jcarmena/13b6ee6da73a0ef11de1 to your computer and use it in GitHub Desktop.
Go: Restoring Sequencing
package main
import (
"fmt"
"math/rand"
"time"
)
func boring(msg string) <-chan Message {
c := make(chan Message)
waitForIt := make(chan bool) // Shared between all messages.
go func() { // We launch the goroutine from inside the function.
for i := 0; ; i++ {
c <- Message{fmt.Sprintf("%s: %d", msg, i), waitForIt}
time.Sleep(time.Duration(rand.Intn(2e3)) * time.Millisecond)
<-waitForIt
}
}()
return c // Return the channel to the caller.
}
func fanIn(input1, input2 <-chan Message) <-chan Message {
c := make(chan Message)
go func() {
for {
c <- <-input1
}
}()
go func() {
for {
c <- <-input2
}
}()
return c
}
type Message struct {
str string
wait chan bool
}
func main() {
c := fanIn(boring("Joe"), boring("Ann"))
for i := 0; i < 5; i++ {
// reading two messages sequentially is important for keep order
msg1 := <-c
fmt.Println(msg1.str)
msg2 := <-c
fmt.Println(msg2.str)
msg1.wait <- true
msg2.wait <- true
}
fmt.Println("You're both boring; I'm leaving.")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment