in reply to Mojolicious websocket with server-side repeating events
with the following# simmulate a handful of iterations of sitting in what otherwise would + be an infinite loop for my $i (0 .. 10) { ... }
Of course, the new code is truly a while(1) loop, constantly firing the repeating event, rather than the original example which was only supposed to fire 11 times. However, I actually wanted this behavior anyways.$loop->recurring(1 => sub { $self->app->log->debug("Doing periodic useful thing"); });
|
---|