Is there a way to run the 'repeat' command in concurrent events while spitting the output?
It seems like the repeat command pauses when you
start another repeat event, and resumes when stopped.
example:
sub whatever {
.
.
$counter{$idx} = $time{$idx}->repeat(1000 => sub {
$timev{$idx} = sprintf("%s",ctm($start_time{$idx}));
});
}