File Coverage

blib/lib/Reflexive/ZmqSocket/DealerSocket.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1             package Reflexive::ZmqSocket::DealerSocket;
2             {
3             $Reflexive::ZmqSocket::DealerSocket::VERSION = '1.130710';
4             }
5              
6             #ABSTRACT: ZMQ_DEALER socket type based subclass
7              
8 1     1   1808 use Moose;
  0            
  0            
9             use ZeroMQ::Constants qw/ ZMQ_DEALER /;
10              
11             extends 'Reflexive::ZmqSocket';
12              
13             sub _build_socket_type { +ZMQ_DEALER }
14              
15             __PACKAGE__->meta->make_immutable();
16              
17             1;
18              
19              
20             =pod
21              
22             =head1 NAME
23              
24             Reflexive::ZmqSocket::DealerSocket - ZMQ_DEALER socket type based subclass
25              
26             =head1 VERSION
27              
28             version 1.130710
29              
30             =head1 DESCRIPTION
31              
32             This subclass of Reflexive::ZmqSocket defaults the socket type to ZMQ_DEALER
33              
34             =head1 AUTHORS
35              
36             =over 4
37              
38             =item *
39              
40             Nicholas R. Perez <nperez@cpan.org>
41              
42             =item *
43              
44             Steffen Mueller <smueller@cpan.org>
45              
46             =back
47              
48             =head1 COPYRIGHT AND LICENSE
49              
50             This software is copyright (c) 2012 by Nicholas R. Perez <nperez@cpan.org>.
51              
52             This is free software; you can redistribute it and/or modify it under
53             the same terms as the Perl 5 programming language system itself.
54              
55             =cut
56              
57              
58             __END__