File Coverage

blib/lib/MR/IProto/Message.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package MR::IProto::Message;
2              
3             =head1 NAME
4              
5             MR::IProto::Message - iproto message
6              
7             =head1 DESCRIPTION
8              
9             Base class for all messages sent throught iproto protocol.
10              
11             =cut
12              
13 1     1   6 use Mouse;
  1         2  
  1         9  
14              
15             =head1 ATTRIBUTES
16              
17             =over
18              
19             =item data
20              
21             Binary representation of message data.
22              
23             =cut
24              
25             has data => (
26             is => 'ro',
27             isa => 'Value',
28             );
29              
30             =back
31              
32             =head1 SEE ALSO
33              
34             L.
35              
36             =cut
37              
38 1     1   373 no Mouse;
  1         2  
  1         4  
39             __PACKAGE__->meta->make_immutable();
40              
41             1;