http://qs321.pair.com?node_id=941915


in reply to Re: Run code every 6seconde
in thread Run code every 6seconde

Whew! This is a great example of why I never used POE. Fortunately, Reflex hides most of… that:
use 5.010; use Reflex::Interval; my %events; $events{func1} = Reflex::Interval->new(interval => 1, on_tick => sub { say 'I am function 1!' } ); $events{func2} = Reflex::Interval->new(interval => 1, on_tick => sub { say 'I am function 2!' } ); Reflex->run_all;
Edit: ++ for the AnyEvent example above too.