- or download this
sub queueProcessRequest {
my ($job) = @_;
...
$dispatcher->enqueue($job);
return undef
}
- or download this
sub syncIdle {
# Check if any thread errored out
...
# sleep(1); # Retry later
}
}
- or download this
sub queueProcessRequest {
my ($job) = @_;
...
$dispatcher->enqueue($job);
return undef
}