Re: Event and max_cb_tm,

2005-02-01 Thread Joshua N Pritikin
On Tue, 2005-02-01 at 13:17 +0100, Dariush Pietrzak wrote: > Is my memory failing me, have Event ever had this property of time-outing > long running callbacks? Not by default. > I found max_cb_tm in docs, but it doesent work: > Event->timer(interval=>5,max_cb_tm=>1,cb=>sub {sleep 99;},);

Event and max_cb_tm,

2005-02-01 Thread Dariush Pietrzak
Hello, when I played with Event some time ago it used to put timer on all callbacks, thus something like this: Event->timer(interval=>5,cb=>sub {sleep 99;},); didn't stop application from running. Now i've written a small app using Event, deployed it, and painfully realised that single han