AnyEvent-ZeroMQ
view release on metacpan or search on metacpan
lib/AnyEvent/ZeroMQ/Push.pm view on Meta::CPAN
package AnyEvent::ZeroMQ::Push;
BEGIN {
$AnyEvent::ZeroMQ::Push::VERSION = '0.01';
}
# ABSTRACT: Non-blocking OO abstraction over ZMQ_PUSH push/push sockets
use Moose;
use true;
use namespace::autoclean;
use ZeroMQ::Raw::Constants qw(ZMQ_PUSH);
with 'AnyEvent::ZeroMQ::Role::WithHandle' =>
{ socket_type => ZMQ_PUSH, socket_direction => 'w' };
with 'AnyEvent::ZeroMQ::Handle::Role::Generic',
'AnyEvent::ZeroMQ::Handle::Role::Writable';
__PACKAGE__->meta->make_immutable;
__END__
=pod
=head1 NAME
AnyEvent::ZeroMQ::Push - Non-blocking OO abstraction over ZMQ_PUSH push/push sockets
=head1 VERSION
version 0.01
=head1 AUTHOR
Jonathan Rockway <jrockway@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Jonathan Rockway.
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
( run in 0.554 second using v1.01-cache-2.11-cpan-437f7b0c052 )