http://www.perlmonks.org?node_id=1051464


in reply to Can't run two AnyEvent::timers in the same time?

That's a lot of code and you don't really show how you run it. In general you can run several AnyEvent timers at the same time:
use 5.010; use strict; use warnings; use AnyEvent; my $cv = AE::cv; my $t1 = AE::timer 0.2, 0.2, sub { say "t1" }; my $t2 = AE::timer 1, 0, sub { say "t2"; $cv->send; }; $cv->recv;
Perhaps you're blocking somewhere?