The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Reflexive::ZmqSocket::ReplySocket;
{
  $Reflexive::ZmqSocket::ReplySocket::VERSION = '1.121730';
}

#ABSTRACT: ZMQ_REP socket type based subclass

use Moose;
use ZeroMQ::Constants qw/ ZMQ_REP /;

extends 'Reflexive::ZmqSocket';

sub _build_socket_type { +ZMQ_REP }

__PACKAGE__->meta->make_immutable();

1;


=pod

=head1 NAME

Reflexive::ZmqSocket::ReplySocket - ZMQ_REP socket type based subclass

=head1 VERSION

version 1.121730

=head1 DESCRIPTION

This subclass of Reflexive::ZmqSocket defaults the socket type to ZMQ_REP

=head1 AUTHORS

=over 4

=item *

Nicholas R. Perez <nperez@cpan.org>

=item *

Steffen Mueller <smueller@cpan.org>

=back

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Nicholas R. Perez <nperez@cpan.org>.

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__