NAME
AnyMQ - Non-blocking message queue system based on AnyEvent
SYNOPSIS
use AnyMQ;
my $mq = AnyMQ->topic('Foo'); # gets an AnyMQ::Topic object
$mq->publish({ message => 'Hello world'});
# bind to external message queue servers using traits.
# my $bus = AnyMQ->new_with_traits(traits => ['AMQP'],
# host => 'localhost',
more»
#line 1
package Module::Install::ReadmeFromPod;
use strict;
use warnings;
use base qw(Module::Install::Base);
use vars qw($VERSION);
$VERSION = '0.06';
sub readme_from {
my $self = shift;
return unless $Module::Install::AUTHOR;
my $file = shift || return;
my $clean = shift;
require Pod::Text;
my $parser = Pod::Text->new();
open README, '> README' or die "$!\n";
$parser->output_f
more»
Revision history for Perl extension AnyMQ
0.32 Wed Dec 22 17:08:08 CST 2010
- Use Any::Moose
- Fix a bug when new messages are created during listener cb,
poll might not be called immediately
0.31 Mon Mar 29 20:02:18 CST 2010
- Topic and Queue recycling infrastructure
0.30 Wed Mar 24 22:16:14 CST 2010
- Improve error and timeout handling
- Bette
more»