File Coverage

blib/lib/Riak/Light/Timeout.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             #
2             # This file is part of Riak-Light
3             #
4             # This software is copyright (c) 2013 by Weborama.
5             #
6             # This is free software; you can redistribute it and/or modify it under
7             # the same terms as the Perl 5 programming language system itself.
8             #
9             ## no critic (RequireUseStrict, RequireUseWarnings)
10             package Riak::Light::Timeout;
11             {
12             $Riak::Light::Timeout::VERSION = '0.10';
13             }
14             ## use critic
15              
16 6     6   70327 use Moo::Role;
  6         9971  
  6         2764  
17              
18             # ABSTRACT: socket interface to add timeout in in/out operations
19              
20             requires 'sysread';
21             requires 'syswrite';
22              
23             1;
24              
25              
26             =pod
27              
28             =encoding UTF-8
29              
30             =head1 NAME
31              
32             Riak::Light::Timeout - socket interface to add timeout in in/out operations
33              
34             =head1 VERSION
35              
36             version 0.10
37              
38             =head1 DESCRIPTION
39              
40             Internal class
41              
42             =head1 AUTHORS
43              
44             =over 4
45              
46             =item *
47              
48             Tiago Peczenyj
49              
50             =item *
51              
52             Damien Krotkine
53              
54             =back
55              
56             =head1 COPYRIGHT AND LICENSE
57              
58             This software is copyright (c) 2013 by Weborama.
59              
60             This is free software; you can redistribute it and/or modify it under
61             the same terms as the Perl 5 programming language system itself.
62              
63             =cut
64              
65              
66             __END__