// Wait on the channel, or for timeout
 select {
 case fd := <-channel:
     return fd, nil
 case <-time.After(queue.timeout):
     // Check again
     select {
     case fd := <-channel:
         return fd, nil
     default:
         return nil, ErrTimeoutElapsed
     }
 }

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/9ca56ba4-dcc2-4e1a-a0e8-5e2463042455%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to