NAME

Message::Passing::Output::ZeroMQ - output messages to ZeroMQ.

SYNOPSIS

use Message::Passing::Output::ZeroMQ;

my $logger = Message::Passing::Output::ZeroMQ->new;
$logger->consume({data => { some => 'data'}, '@metadata' => 'value' });

# Or see Log::Dispatch::Message::Passing for a more 'normal' interface to
# simple logging.

# Or use directly on command line:
message-passing --input STDIN --output ZeroMQ
{"data":{"some":"data"},"@metadata":"value"}

DESCRIPTION

A Message::Passing ZeroMQ output class.

Can be used as part of a chain of classes with the message-passing utility, or directly as a logger in normal perl applications.

METHODS

consume

Sends a message.

SEE ALSO

Message::Passing::ZeroMQ
Message::Passing::Input::ZeroMQ
Message::Passing
ZeroMQ
http://www.zeromq.org/

SPONSORSHIP

This module exists due to the wonderful people at Suretec Systems Ltd. <http://www.suretecsystems.com/> who sponsored it's development for its VoIP division called SureVoIP <http://www.surevoip.co.uk/> for use with the SureVoIP API - <http://www.surevoip.co.uk/support/wiki/api_documentation>

AUTHOR, COPYRIGHT AND LICENSE

See Message::Passing.