Is there a callback that gets fired when the entire output buffer has been written out to the network? -- Tony Arcieri ClickCaster, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070627/b2a2b2bb/attachment.html
No, not at the moment. But you can use EventMachine::Connection#get_outbound_data_size to find out how much data is in EM''s outbound buffer. What are you trying to solve? On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote:> > Is there a callback that gets fired when the entire output buffer has been > written out to the network? > > -- > Tony Arcieri > ClickCaster, Inc. > > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070627/f5502691/attachment.html
Bandwidth throttling. Is there a better solution? - Tony On 6/27/07, Francis Cianfrocca <garbagecat10 at gmail.com> wrote:> > No, not at the moment. But you can use > EventMachine::Connection#get_outbound_data_size to find out how much data is > in EM''s outbound buffer. What are you trying to solve? > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > Is there a callback that gets fired when the entire output buffer has > > been written out to the network? > > > > -- > > Tony Arcieri > > ClickCaster, Inc. > > > > _______________________________________________ > > Eventmachine-talk mailing list > > Eventmachine-talk at rubyforge.org > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-- Tony Arcieri ClickCaster, Inc. tony at clickcaster.com 720-227-0129 ext. 202 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070627/371af100/attachment.html
Yeah, look at the API I gave you and also EventMachine#next_tick. You can use them to control how hard you hit the outbound pipe. On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote:> > Bandwidth throttling. > > Is there a better solution? > > - Tony > > On 6/27/07, Francis Cianfrocca < garbagecat10 at gmail.com > wrote: > > > > No, not at the moment. But you can use > > EventMachine::Connection#get_outbound_data_size to find out how much data is > > in EM''s outbound buffer. What are you trying to solve? > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > Is there a callback that gets fired when the entire output buffer has > > > been written out to the network? > > > > > > -- > > > Tony Arcieri > > > ClickCaster, Inc. > > > > > > _______________________________________________ > > > Eventmachine-talk mailing list > > > Eventmachine-talk at rubyforge.org > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > _______________________________________________ > > Eventmachine-talk mailing list > > Eventmachine-talk at rubyforge.org > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > -- > Tony Arcieri > ClickCaster, Inc. > tony at clickcaster.com > 720-227-0129 ext. 202 > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070628/c4ab73fa/attachment-0001.html
What about per-connection throttling? On 6/28/07, Francis Cianfrocca <garbagecat10 at gmail.com> wrote:> > Yeah, look at the API I gave you and also EventMachine#next_tick. You can > use them to control how hard you hit the outbound pipe. > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > Bandwidth throttling. > > > > Is there a better solution? > > > > - Tony > > > > On 6/27/07, Francis Cianfrocca < garbagecat10 at gmail.com > wrote: > > > > > > No, not at the moment. But you can use > > > EventMachine::Connection#get_outbound_data_size to find out how much data is > > > in EM''s outbound buffer. What are you trying to solve? > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > Is there a callback that gets fired when the entire output buffer > > > > has been written out to the network? > > > > > > > > -- > > > > Tony Arcieri > > > > ClickCaster, Inc. > > > > > > > > _______________________________________________ > > > > Eventmachine-talk mailing list > > > > Eventmachine-talk at rubyforge.org > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > _______________________________________________ > > > Eventmachine-talk mailing list > > > Eventmachine-talk at rubyforge.org > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > -- > > Tony Arcieri > > ClickCaster, Inc. > > tony at clickcaster.com > > 720-227-0129 ext. 202 > > _______________________________________________ > > Eventmachine-talk mailing list > > Eventmachine-talk at rubyforge.org > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-- Tony Arcieri ClickCaster, Inc. tony at clickcaster.com 720-227-0129 ext. 202 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070628/c48a83d8/attachment.html
EventMachine::Connection#get_outbound_data_size is per-connection. Are you looking to make sure you don''t swamp the outbound pipe? Or rather to make sure that one really busy connection doesn''t swamp all the others? On 6/28/07, Tony Arcieri <tony at clickcaster.com> wrote:> > What about per-connection throttling? > > On 6/28/07, Francis Cianfrocca <garbagecat10 at gmail.com> wrote: > > > > Yeah, look at the API I gave you and also EventMachine#next_tick. You > > can use them to control how hard you hit the outbound pipe. > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > Bandwidth throttling. > > > > > > Is there a better solution? > > > > > > - Tony > > > > > > On 6/27/07, Francis Cianfrocca < garbagecat10 at gmail.com > wrote: > > > > > > > > No, not at the moment. But you can use > > > > EventMachine::Connection#get_outbound_data_size to find out how much data is > > > > in EM''s outbound buffer. What are you trying to solve? > > > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > > > Is there a callback that gets fired when the entire output buffer > > > > > has been written out to the network? > > > > > > > > > > -- > > > > > Tony Arcieri > > > > > ClickCaster, Inc. > > > > > > > > > > _______________________________________________ > > > > > Eventmachine-talk mailing list > > > > > Eventmachine-talk at rubyforge.org > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > _______________________________________________ > > > > Eventmachine-talk mailing list > > > > Eventmachine-talk at rubyforge.org > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > -- > > > Tony Arcieri > > > ClickCaster, Inc. > > > tony at clickcaster.com > > > 720-227-0129 ext. 202 > > > _______________________________________________ > > > Eventmachine-talk mailing list > > > Eventmachine-talk at rubyforge.org > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > _______________________________________________ > > Eventmachine-talk mailing list > > Eventmachine-talk at rubyforge.org > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > -- > Tony Arcieri > ClickCaster, Inc. > tony at clickcaster.com > 720-227-0129 ext. 202 > > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070628/afebc406/attachment.html
I''m wanting to do per-connection bandwidth throttling (think QoS) - Tony On 6/28/07, Francis Cianfrocca <garbagecat10 at gmail.com> wrote:> > EventMachine::Connection#get_outbound_data_size is per-connection. Are you > looking to make sure you don''t swamp the outbound pipe? Or rather to make > sure that one really busy connection doesn''t swamp all the others? > > On 6/28/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > What about per-connection throttling? > > > > On 6/28/07, Francis Cianfrocca < garbagecat10 at gmail.com> wrote: > > > > > > Yeah, look at the API I gave you and also EventMachine#next_tick. You > > > can use them to control how hard you hit the outbound pipe. > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > > Bandwidth throttling. > > > > > > > > Is there a better solution? > > > > > > > > - Tony > > > > > > > > On 6/27/07, Francis Cianfrocca < garbagecat10 at gmail.com > wrote: > > > > > > > > > > No, not at the moment. But you can use > > > > > EventMachine::Connection#get_outbound_data_size to find out how much data is > > > > > in EM''s outbound buffer. What are you trying to solve? > > > > > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > > > > > Is there a callback that gets fired when the entire output > > > > > > buffer has been written out to the network? > > > > > > > > > > > > -- > > > > > > Tony Arcieri > > > > > > ClickCaster, Inc. > > > > > > > > > > > > _______________________________________________ > > > > > > Eventmachine-talk mailing list > > > > > > Eventmachine-talk at rubyforge.org > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > Eventmachine-talk mailing list > > > > > Eventmachine-talk at rubyforge.org > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > -- > > > > Tony Arcieri > > > > ClickCaster, Inc. > > > > tony at clickcaster.com > > > > 720-227-0129 ext. 202 > > > > _______________________________________________ > > > > Eventmachine-talk mailing list > > > > Eventmachine-talk at rubyforge.org > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > _______________________________________________ > > > Eventmachine-talk mailing list > > > Eventmachine-talk at rubyforge.org > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > -- > > Tony Arcieri > > ClickCaster, Inc. > > tony at clickcaster.com > > 720-227-0129 ext. 202 > > > > _______________________________________________ > > Eventmachine-talk mailing list > > Eventmachine-talk at rubyforge.org > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-- Tony Arcieri ClickCaster, Inc. tony at clickcaster.com 720-227-0129 ext. 202 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070628/22389caa/attachment-0001.html
would it help if you could do something like this: every time you have data to write on a particular connection, you make a decision how much of it to write, and you choose to defer, then you''ll get another event at some particular time in the future, and you get another chance to decide how much to send? On 6/28/07, Tony Arcieri <tony at clickcaster.com> wrote:> > I''m wanting to do per-connection bandwidth throttling (think QoS) > > - Tony > > On 6/28/07, Francis Cianfrocca < garbagecat10 at gmail.com> wrote: > > > > EventMachine::Connection#get_outbound_data_size is per-connection. Are > > you looking to make sure you don''t swamp the outbound pipe? Or rather to > > make sure that one really busy connection doesn''t swamp all the others? > > > > On 6/28/07, Tony Arcieri < tony at clickcaster.com> wrote: > > > > > > What about per-connection throttling? > > > > > > On 6/28/07, Francis Cianfrocca < garbagecat10 at gmail.com> wrote: > > > > > > > > Yeah, look at the API I gave you and also EventMachine#next_tick. > > > > You can use them to control how hard you hit the outbound pipe. > > > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > > > > Bandwidth throttling. > > > > > > > > > > Is there a better solution? > > > > > > > > > > - Tony > > > > > > > > > > On 6/27/07, Francis Cianfrocca < garbagecat10 at gmail.com > wrote: > > > > > > > > > > > > No, not at the moment. But you can use > > > > > > EventMachine::Connection#get_outbound_data_size to find out how much data is > > > > > > in EM''s outbound buffer. What are you trying to solve? > > > > > > > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > > > > > > > Is there a callback that gets fired when the entire output > > > > > > > buffer has been written out to the network? > > > > > > > > > > > > > > -- > > > > > > > Tony Arcieri > > > > > > > ClickCaster, Inc. > > > > > > > > > > > > > > _______________________________________________ > > > > > > > Eventmachine-talk mailing list > > > > > > > Eventmachine-talk at rubyforge.org > > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > Eventmachine-talk mailing list > > > > > > Eventmachine-talk at rubyforge.org > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > Tony Arcieri > > > > > ClickCaster, Inc. > > > > > tony at clickcaster.com > > > > > 720-227-0129 ext. 202 > > > > > _______________________________________________ > > > > > Eventmachine-talk mailing list > > > > > Eventmachine-talk at rubyforge.org > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > _______________________________________________ > > > > Eventmachine-talk mailing list > > > > Eventmachine-talk at rubyforge.org > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > -- > > > Tony Arcieri > > > ClickCaster, Inc. > > > tony at clickcaster.com > > > 720-227-0129 ext. 202 > > > > > > _______________________________________________ > > > Eventmachine-talk mailing list > > > Eventmachine-talk at rubyforge.org > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > _______________________________________________ > > Eventmachine-talk mailing list > > Eventmachine-talk at rubyforge.org > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > -- > Tony Arcieri > ClickCaster, Inc. > tony at clickcaster.com > 720-227-0129 ext. 202 > > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070628/840f5db9/attachment.html
What triggers that event? On 6/28/07, Francis Cianfrocca <garbagecat10 at gmail.com> wrote:> > would it help if you could do something like this: > every time you have data to write on a particular connection, you make a > decision how much of it to write, and you choose to defer, then you''ll get > another event at some particular time in the future, and you get another > chance to decide how much to send? > > On 6/28/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > I''m wanting to do per-connection bandwidth throttling (think QoS) > > > > - Tony > > > > On 6/28/07, Francis Cianfrocca < garbagecat10 at gmail.com> wrote: > > > > > > EventMachine::Connection#get_outbound_data_size is per-connection. Are > > > you looking to make sure you don''t swamp the outbound pipe? Or rather to > > > make sure that one really busy connection doesn''t swamp all the others? > > > > > > On 6/28/07, Tony Arcieri < tony at clickcaster.com> wrote: > > > > > > > > What about per-connection throttling? > > > > > > > > On 6/28/07, Francis Cianfrocca < garbagecat10 at gmail.com> wrote: > > > > > > > > > > Yeah, look at the API I gave you and also EventMachine#next_tick. > > > > > You can use them to control how hard you hit the outbound pipe. > > > > > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > > > > > > Bandwidth throttling. > > > > > > > > > > > > Is there a better solution? > > > > > > > > > > > > - Tony > > > > > > > > > > > > On 6/27/07, Francis Cianfrocca < garbagecat10 at gmail.com > wrote: > > > > > > > > > > > > > > No, not at the moment. But you can use > > > > > > > EventMachine::Connection#get_outbound_data_size to find out how much data is > > > > > > > in EM''s outbound buffer. What are you trying to solve? > > > > > > > > > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > > > > > > > > > Is there a callback that gets fired when the entire output > > > > > > > > buffer has been written out to the network? > > > > > > > > > > > > > > > > -- > > > > > > > > Tony Arcieri > > > > > > > > ClickCaster, Inc. > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > Eventmachine-talk mailing list > > > > > > > > Eventmachine-talk at rubyforge.org > > > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > Eventmachine-talk mailing list > > > > > > > Eventmachine-talk at rubyforge.org > > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > Tony Arcieri > > > > > > ClickCaster, Inc. > > > > > > tony at clickcaster.com > > > > > > 720-227-0129 ext. 202 > > > > > > _______________________________________________ > > > > > > Eventmachine-talk mailing list > > > > > > Eventmachine-talk at rubyforge.org > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > Eventmachine-talk mailing list > > > > > Eventmachine-talk at rubyforge.org > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > -- > > > > Tony Arcieri > > > > ClickCaster, Inc. > > > > tony at clickcaster.com > > > > 720-227-0129 ext. 202 > > > > > > > > _______________________________________________ > > > > Eventmachine-talk mailing list > > > > Eventmachine-talk at rubyforge.org > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > _______________________________________________ > > > Eventmachine-talk mailing list > > > Eventmachine-talk at rubyforge.org > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > -- > > Tony Arcieri > > ClickCaster, Inc. > > tony at clickcaster.com > > 720-227-0129 ext. 202 > > > > _______________________________________________ > > Eventmachine-talk mailing list > > Eventmachine-talk at rubyforge.org > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-- Tony Arcieri ClickCaster, Inc. tony at clickcaster.com 720-227-0129 ext. 202 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070629/f0dbe27a/attachment-0001.html
It would happen either on the next pass through the reactor core (giving all the other connections a chance to run first) or you could schedule it a discrete amount of time in the future. I''m trying to imagine if it could be triggered by observing the current state of the outbound buffers, but polling for socket-writability already kind of takes care of that. On 6/29/07, Tony Arcieri <tony at clickcaster.com> wrote:> > What triggers that event? > > On 6/28/07, Francis Cianfrocca <garbagecat10 at gmail.com> wrote: > > > > would it help if you could do something like this: > > every time you have data to write on a particular connection, you make a > > decision how much of it to write, and you choose to defer, then you''ll get > > another event at some particular time in the future, and you get another > > chance to decide how much to send? > > > > On 6/28/07, Tony Arcieri < tony at clickcaster.com> wrote: > > > > > > I''m wanting to do per-connection bandwidth throttling (think QoS) > > > > > > - Tony > > > > > > On 6/28/07, Francis Cianfrocca < garbagecat10 at gmail.com> wrote: > > > > > > > > EventMachine::Connection#get_outbound_data_size is per-connection. > > > > Are you looking to make sure you don''t swamp the outbound pipe? Or rather to > > > > make sure that one really busy connection doesn''t swamp all the others? > > > > > > > > On 6/28/07, Tony Arcieri < tony at clickcaster.com> wrote: > > > > > > > > > > What about per-connection throttling? > > > > > > > > > > On 6/28/07, Francis Cianfrocca < garbagecat10 at gmail.com> wrote: > > > > > > > > > > > > Yeah, look at the API I gave you and also > > > > > > EventMachine#next_tick. You can use them to control how hard you hit the > > > > > > outbound pipe. > > > > > > > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > > > > > > > > Bandwidth throttling. > > > > > > > > > > > > > > Is there a better solution? > > > > > > > > > > > > > > - Tony > > > > > > > > > > > > > > On 6/27/07, Francis Cianfrocca < garbagecat10 at gmail.com > > > > > > > > wrote: > > > > > > > > > > > > > > > > No, not at the moment. But you can use > > > > > > > > EventMachine::Connection#get_outbound_data_size to find out how much data is > > > > > > > > in EM''s outbound buffer. What are you trying to solve? > > > > > > > > > > > > > > > > On 6/27/07, Tony Arcieri <tony at clickcaster.com> wrote: > > > > > > > > > > > > > > > > > Is there a callback that gets fired when the entire > > > > > > > > > output buffer has been written out to the network? > > > > > > > > > > > > > > > > > > -- > > > > > > > > > Tony Arcieri > > > > > > > > > ClickCaster, Inc. > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > Eventmachine-talk mailing list > > > > > > > > > Eventmachine-talk at rubyforge.org > > > > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > Eventmachine-talk mailing list > > > > > > > > Eventmachine-talk at rubyforge.org > > > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > Tony Arcieri > > > > > > > ClickCaster, Inc. > > > > > > > tony at clickcaster.com > > > > > > > 720-227-0129 ext. 202 > > > > > > > _______________________________________________ > > > > > > > Eventmachine-talk mailing list > > > > > > > Eventmachine-talk at rubyforge.org > > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > Eventmachine-talk mailing list > > > > > > Eventmachine-talk at rubyforge.org > > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > Tony Arcieri > > > > > ClickCaster, Inc. > > > > > tony at clickcaster.com > > > > > 720-227-0129 ext. 202 > > > > > > > > > > _______________________________________________ > > > > > Eventmachine-talk mailing list > > > > > Eventmachine-talk at rubyforge.org > > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > > _______________________________________________ > > > > Eventmachine-talk mailing list > > > > Eventmachine-talk at rubyforge.org > > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > > > > > > > > -- > > > Tony Arcieri > > > ClickCaster, Inc. > > > tony at clickcaster.com > > > 720-227-0129 ext. 202 > > > > > > _______________________________________________ > > > Eventmachine-talk mailing list > > > Eventmachine-talk at rubyforge.org > > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > > > > _______________________________________________ > > Eventmachine-talk mailing list > > Eventmachine-talk at rubyforge.org > > http://rubyforge.org/mailman/listinfo/eventmachine-talk > > > > > > -- > Tony Arcieri > ClickCaster, Inc. > tony at clickcaster.com > 720-227-0129 ext. 202 > > _______________________________________________ > Eventmachine-talk mailing list > Eventmachine-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/eventmachine-talk >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/eventmachine-talk/attachments/20070630/8ff1f807/attachment.html