Skip to content

Instantly share code, notes, and snippets.

@chenziliang
Created November 13, 2016 10:03
Show Gist options
  • Save chenziliang/eaabf3cc5bea688f8354d126879de997 to your computer and use it in GitHub Desktop.
Save chenziliang/eaabf3cc5bea688f8354d126879de997 to your computer and use it in GitHub Desktop.
Go Context
package main
import (
"context"
"fmt"
)
func gen(ctx context.Context) <-chan int {
ch := make(chan int)
go func() {
var n int
for {
select {
case <-ctx.Done():
return
case ch <- n:
n++
}
}
}()
return ch
}
func main() {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
for n := range gen(ctx) {
fmt.Println(n)
if n == 5 {
cancel()
break
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment