Hacker News new | ask | show | jobs
by tptacek 4982 days ago
That would require a goroutine for each socket to hot potato from the socket to a channel, right?
1 comments

Yes. This allows you to have the "when any of these socket's state changes" semantics in your controller/dispatcher function. I would like it if they had such an interface in stdlib...

If you really do just need to take data from one Reader and send it to a Writer, you can make a new Pipe.