SYNOPSIS
use ZeroMQ qw/:all/;
my $cxt = ZeroMQ::Context->new;
my $sock = ZeroMQ::Socket->new($cxt, ZMQ_REP);
my $msg = ZeroMQ::Message->new($text);
$sock->send($msg);
my $anothermsg = $sock->recv;
DESCRIPTION
A "ZeroMQ::Message" object represents a message to be passed over a "ZeroMQ::Socket".METHODS
new
Creates a new "ZeroMQ::Message".Takes the data to send with the message as argument.
new_from_message( $rawmsg )
Creates a new "ZeroMQ::Message".Takes a ZeroMQ::Raw::Message object as argument.
message
Return the underlying ZeroMQ::Raw::Message object.size
Returns the length (in bytes) of the contained data.data
Returns the data as a (potentially binary) string.COPYRIGHT AND LICENSE
The ZeroMQ module isCopyright (C) 2010 by Daisuke Maki
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.0 or, at your option, any later version of Perl 5 you may have available.