RE: There needs to be a book!

2007-09-12 Thread Michael Collins
> > Simon Cozens rewrite of Advanced Perl Programming does have a POE > > chapter - that's where I read about POE first. > > Seconded, Simon Cozens' book provides a nice introduction to POE. (As > a side note, this book also contains one of the few usable introductions > to Unicode.) Agreed. It

RE: QUESTION: POE Nomenclature

2007-03-02 Thread Michael Collins
> On Thu, Mar 01, 2007 at 11:00:20PM -0800, David Davis wrote: > > POE is not threaded, and therefore multiple 'event chains' won't be > running > > simultaneously in a single process. > > I think multiple event _chains_ *do* exist simultaneously. Just only > one event _handler_ runs at a time. D

RE: QUESTION: POE Nomenclature

2007-03-01 Thread Michael Collins
> i believe 'event chain' would be appropriate > > On 3/1/07, Michael Collins <[EMAIL PROTECTED]> wrote: > > > > POE Gang, > > > > I have a nomenclature question. Let's say you have one or more POE > > sessions. When you have an

QUESTION: POE Nomenclature

2007-03-01 Thread Michael Collins
POE Gang, I have a nomenclature question. Let's say you have one or more POE sessions. When you have an 'event flow' - the flow of control moves from session to session (or to different events within a session) - I'm wondering what you call it. Is it a 'thread' or a 'threadoid'? Just curious w

POE - Catching INT Signals

2007-02-21 Thread Michael Collins
Here is a question I also posed on perlmonks.org... (http://www.perlmonks.org/?node_id=601464) I am searching for a way to catch and handle a Control-C when using multiple POE sessions. I have successfully used the snippet from the POE Cookbook to actually catch the INT signal in each of my Ses