File: chans_example_test.go

package info (click to toggle)
golang-github-bradenaw-juniper 0.15.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 872 kB
  • sloc: sh: 27; makefile: 2
file content (94 lines) | stat: -rw-r--r-- 1,010 bytes parent folder | download
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
package chans_test

import (
	"fmt"
	"sync"

	"github.com/bradenaw/juniper/chans"
)

func ExampleMerge() {
	a := make(chan int)
	go func() {
		a <- 0
		a <- 1
		a <- 2
		close(a)
	}()
	b := make(chan int)
	go func() {
		b <- 5
		b <- 6
		b <- 7
		b <- 8
		close(b)
	}()

	out := make(chan int)
	done := make(chan struct{})
	go func() {
		for i := range out {
			fmt.Println(i)
		}
		close(done)
	}()

	chans.Merge(out, a, b)
	close(out)
	<-done

	// Unordered output:
	// 0
	// 1
	// 2
	// 5
	// 6
	// 7
	// 8
}

func ExampleReplicate() {
	in := make(chan int)
	go func() {
		in <- 0
		in <- 1
		in <- 2
		in <- 3
		close(in)
	}()

	var wg sync.WaitGroup
	wg.Add(2)
	a := make(chan int)
	go func() {
		for i := range a {
			fmt.Println(i * 2)
		}
		wg.Done()
	}()

	b := make(chan int)
	go func() {
		x := 0
		for i := range b {
			x += i
			fmt.Println(x)
		}
		wg.Done()
	}()

	chans.Replicate(in, a, b)
	close(a)
	close(b)
	wg.Wait()

	// Unordered output:
	// 0
	// 2
	// 4
	// 6
	// 0
	// 1
	// 3
	// 6
}