Advertisement
Guest User

Untitled

a guest
Jun 7th, 2017
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 1.00 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4.     "fmt"
  5.     "log"
  6.     "time"
  7. )
  8.  
  9. func main() {
  10.     bobCh := generate("bob", time.Second)
  11.     sueCh := generate("sue", time.Second*4)
  12.  
  13.     output := fanIn(bobCh, sueCh)
  14.  
  15.     for val := range output {
  16.         log.Println(val)
  17.     }
  18.  
  19.     /*
  20.         Output:
  21.         2017/06/07 13:02:33 bob 0
  22.         2017/06/07 13:02:33 sue 0
  23.         2017/06/07 13:02:34 bob 1
  24.         2017/06/07 13:02:35 bob 2
  25.         2017/06/07 13:02:36 bob 3
  26.         2017/06/07 13:02:37 sue 1
  27.         2017/06/07 13:02:37 bob 4
  28.         2017/06/07 13:02:38 bob 5
  29.         2017/06/07 13:02:39 bob 6
  30.  
  31.     */
  32. }
  33.  
  34. func fanIn(inputs ...<-chan string) <-chan string {
  35.     output := make(chan string)
  36.  
  37.     for _, ch := range inputs {
  38.         go func(output chan string, input <-chan string) {
  39.             for s := range input {
  40.                 output <- s
  41.             }
  42.         }(output, ch)
  43.     }
  44.  
  45.     return output
  46. }
  47.  
  48. func generate(val string, delay time.Duration) <-chan string {
  49.     output := make(chan string)
  50.  
  51.     go func() {
  52.         for i := 0; ; i++ {
  53.             output <- fmt.Sprintf("%s %d", val, i)
  54.             time.Sleep(delay)
  55.         }
  56.     }()
  57.  
  58.     return output
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement