i'm wondering what the best way to handle logical grouping in Coro for mutliple things that you might want to control in a single thread. <br>Coming from AE, here's a typical use case:<br><br>$cv = AE::cv<br>for qw( <a href="http://foo.com">foo.com</a> <a href="http://bar.com">bar.com</a> ) {<br>
  $cv->begin<br>  http_get $_, sub {  $cv->end };<br>}<br>$cv->wait;<br><br>I would like to employ this grouping in a single Coro thread.  I understand rouse_cb, but in this case, it doesn't seem to make sense where there are >1 events per thread that i'm waiting on.<br>
<br>Thanks in advance!<br><br>-gleeco<br>