File Coverage

blib/lib/Net/Async/Statsd/Bus.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Net::Async::Statsd::Bus;
2             $Net::Async::Statsd::Bus::VERSION = '0.004';
3 2     2   11 use strict;
  2         4  
  2         79  
4 2     2   10 use warnings;
  2         3  
  2         82  
5              
6 2     2   9 use parent qw(Mixin::Event::Dispatch);
  2         4  
  2         20  
7              
8             =head1 NAME
9              
10             Net::Async::Statsd::Bus - event handling object
11              
12             =head1 VERSION
13              
14             Version 0.004
15              
16             =head1 DESCRIPTION
17              
18             Used internally by L.
19              
20             =cut
21              
22 2     2   12453 use constant EVENT_DISPATCH_ON_FALLBACK => 0;
  2         5  
  2         146  
23              
24             =head2 new
25              
26             Instantiate. Called internally.
27              
28             =cut
29              
30 2     2 1 5 sub new { my $class = shift; bless { @_ }, $class }
  2         54  
31              
32             1;
33              
34             __END__