forked from patrickleboutillier/perl-Time-Out
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
47 lines (31 loc) · 1.11 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
NAME
Time::Out - Easily timeout long running operations
EXAMPLE
use Time::Out qw( timeout );
# time out the following code block after 5 seconds
timeout 5 => sub {
# do something that might take a long time...
} ;
if ( $@ ){
# timeout occured...
}
INSTALLATION
To install this module, use your preferred CPAN client. If this is cpanm then
run the command
cpanm Time::Out
DOCUMENTATION
After the installation, you can find further documentation using the commands:
perldoc Time::Out
MAINTENANCE
To maintain this module, run the following commands:
cpanm --notest --with-configure --with-develop --no-man-pages --local-lib-contained local --installdeps .
perl Makefile.PL
make
make RELEASE_TESTING=1 test # use Test::Harness
make RELEASE_TESTING=1 testp # use TAP::Harness
make cover # coverage statistics in vim format
COPYRIGHT AND LICENSE
This software is copyright (c) 2005-2008 Patrick LeBoutillier, 2023 by Sven
Willenbuecher.
This is free software; you can redistribute it and/or modify it under the same
terms as the Perl 5 programming language system itself.