Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
Thread p = new Thread(() -> {});
p.start();
p.join(5_000);
p.interrupt();
The `join` call will block until `p` exits, or 5 seconds have elapsed.
def main(p) do
p
|> Task.async()
|> Task.await()
end
my $p = Coro->new( sub { ... } );
$p->ready;
my $start = time;
for (1..100) {
cede;
if ( (time - $start) > 5 ) {
$p->cancel;
last;
}
}
CPAN module Coro provides threading support. Here we create a thread $p to do some work, and in the main thread we cede control to it within a loop doing other work. When the current time minus start time exceed 5 seconds, we cancel thread $p.
Timeout::timeout(5) { p }
On time out, this results in a TimeOut::Error object, which should be rescued.
The name p is also a built-in, though.
The name p is also a built-in, though.