Created
August 30, 2017 04:17
-
-
Save jamescarr/095e27dffa211b08fb18773aea6c05f8 to your computer and use it in GitHub Desktop.
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
for { | |
select { | |
case m, ok := <-c: | |
if !ok { | |
breakl | |
} | |
handle(m) | |
case <-time.After(1 * time.Minute): | |
fmt.Println("timed out") | |
break | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment