package Reflexive::ZmqSocket::RequestSocket; { $Reflexive::ZmqSocket::RequestSocket::VERSION = '1.121730'; } #ABSTRACT: ZMQ_REQ socket type based subclass use Moose; use ZeroMQ::Constants qw/ ZMQ_REQ /; extends 'Reflexive::ZmqSocket'; sub _build_socket_type { +ZMQ_REQ } __PACKAGE__->meta->make_immutable(); 1; =pod =head1 NAME Reflexive::ZmqSocket::RequestSocket - ZMQ_REQ socket type based subclass =head1 VERSION version 1.121730 =head1 DESCRIPTION This subclass of Reflexive::ZmqSocket defaults the socket type to ZMQ_REQ =head1 AUTHORS =over 4 =item * Nicholas R. Perez =item * Steffen Mueller =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2012 by Nicholas R. Perez . This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut __END__