Last active
August 29, 2015 14:17
-
-
Save makeittotop/60271e24041793c47081 to your computer and use it in GitHub Desktop.
go non blocking example
This file contains hidden or 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" | |
| func main() { | |
| messages := make(chan string) | |
| signals := make(chan bool) | |
| select { | |
| case msg := <-messages: | |
| fmt.Println("received message", msg) | |
| default: | |
| fmt.Println("no message received") | |
| } | |
| msg := "hi" | |
| select { | |
| case messages <- msg: | |
| fmt.Println("sent message", msg) | |
| default: | |
| fmt.Println("no message sent") | |
| } | |
| select { | |
| case msg := <-messages: | |
| fmt.Println("received message", msg) | |
| case sig := <-signals: | |
| fmt.Println("received signal", sig) | |
| default: | |
| fmt.Println("no activity") | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment