Skip to content

Instantly share code, notes, and snippets.

@hauxe
Created July 24, 2018 04:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hauxe/7a49e3f38fa522fa61a19d8548a1997c to your computer and use it in GitHub Desktop.
Save hauxe/7a49e3f38fa522fa61a19d8548a1997c to your computer and use it in GitHub Desktop.
// OR function combines all signal from channels into a single channel with Or condition
func OR(channels ...<-chan interface{}) <-chan interface{} {
switch len(channels) {
case 0:
return nil
case 1:
return channels[0]
}
orDone := make(chan interface{})
go func() {
defer close(orDone)
switch len(channels) {
case 2:
select {
case <-channels[0]:
case <-channels[1]:
}
default:
select {
case <-channels[0]:
case <-channels[1]:
case <-channels[2]:
case <-OR(append(channels[3:], orDone)...):
}
}
}()
return orDone
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment