File Coverage

blib/lib/ZMQ/Raw/Message.pm
Criterion Covered Total %
statement 27 29 93.1
branch 4 6 66.6
condition 1 3 33.3
subroutine 7 8 87.5
pod n/a
total 39 46 84.7


line stmt bran cond sub pod time code
1             package ZMQ::Raw::Message;
2             $ZMQ::Raw::Message::VERSION = '0.38';
3 14     29   99 use strict;
  14         27  
  14         412  
4 14     21   70 use warnings;
  14         23  
  14         332  
5 14     21   68 use Carp;
  14         24  
  14         710  
6 14     21   81 use ZMQ::Raw;
  14         22  
  14         2180  
7              
8             sub AUTOLOAD
9             {
10             # This AUTOLOAD is used to 'autoload' constants from the constant()
11             # XS function.
12              
13 7     7   2002 my $constname;
14 7         13 our $AUTOLOAD;
15 7         50 ($constname = $AUTOLOAD) =~ s/.*:://;
16 7 50 33     50 croak "&ZMQ::Raw::Message::_constant not defined" if ($constname eq '_o_constant' || $constname eq '_p_constant');
17 7         78 my ($error, $val) = _o_constant ($constname);
18 7 100       19 if ($error)
19             {
20 5         24 ($error, $val) = _p_constant ($constname);
21 5 50       14 if ($error)
22             {
23 0         0 croak $error;
24             }
25             }
26             {
27 14     14   104 no strict 'refs';
  14         30  
  14         1593  
  7         12  
28 7     8   51 *$AUTOLOAD = sub { $val };
  8         67  
29             }
30 7         30 goto &$AUTOLOAD;
31             }
32              
33 0     0     sub CLONE_SKIP { 1 }
34              
35             =head1 NAME
36              
37             ZMQ::Raw::Message - ZeroMQ Message class
38              
39             =head1 VERSION
40              
41             version 0.38
42              
43             =head1 DESCRIPTION
44              
45             A L represents a ZeroMQ message.
46              
47             =head1 SYNOPSIS
48              
49             use ZMQ::Raw;
50              
51             my $msg = ZMQ::Raw::Message->new;
52             $msg->data ('hello');
53              
54             $socket->sendmsg ($msg);
55              
56             =head1 METHODS
57              
58             =head2 new( )
59              
60             Create a new empty ZeroMQ message.
61              
62             =head2 clone( )
63              
64             Create a copy of a ZeroMQ message.
65              
66             =head2 data ([$data])
67              
68             Retrieve or set the message data.
69              
70             =head2 more( )
71              
72             Check if this message is part of a multi-part message, and if there are further
73             parts to be received.
74              
75             =head2 size( )
76              
77             Get the size in bytes of the content of the messsage.
78              
79             =head2 routing_id( [$id] )
80              
81             Get or set the routing id of the socket. To get a valid routing id, you must
82             receive a message from a C socket.
83              
84             =head2 group( [$group] )
85              
86             Get or set the group socket.
87              
88             =head2 get( $property )
89              
90             Get the value of C<$property>.
91              
92             =head2 gets( $property )
93              
94             Get metadata property.
95              
96             =head1 CONSTANTS
97              
98             =head2 ZMQ_MORE
99              
100             =head2 ZMQ_SHARED
101              
102             =head2 ZMQ_MSG_PROPERTY_ROUTING_ID
103              
104             =head2 ZMQ_MSG_PROPERTY_SOCKET_TYPE
105              
106             =head2 ZMQ_MSG_PROPERTY_USER_ID
107              
108             =head2 ZMQ_MSG_PROPERTY_PEER_ADDRESS
109              
110             =head1 AUTHOR
111              
112             Jacques Germishuys
113              
114             =head1 LICENSE AND COPYRIGHT
115              
116             Copyright 2017 Jacques Germishuys.
117              
118             This program is free software; you can redistribute it and/or modify it
119             under the terms of either: the GNU General Public License as published
120             by the Free Software Foundation; or the Artistic License.
121              
122             See http://dev.perl.org/licenses/ for more information.
123              
124             =cut
125              
126             1; # End of ZMQ::Raw::Message