File Coverage

blib/lib/MongoDB/Role/_ReadOp.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             # Copyright 2014 - present MongoDB, Inc.
2             #
3             # Licensed under the Apache License, Version 2.0 (the "License");
4             # you may not use this file except in compliance with the License.
5             # You may obtain a copy of the License at
6             #
7             # http://www.apache.org/licenses/LICENSE-2.0
8             #
9             # Unless required by applicable law or agreed to in writing, software
10             # distributed under the License is distributed on an "AS IS" BASIS,
11             # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12             # See the License for the specific language governing permissions and
13             # limitations under the License.
14              
15 58     58   136694 use strict;
  58         151  
  58         1791  
16 58     58   310 use warnings;
  58         125  
  58         2193  
17             package MongoDB::Role::_ReadOp;
18              
19             # MongoDB role for read ops that provides read preference
20              
21 58     58   311 use version;
  58         136  
  58         348  
22             our $VERSION = 'v2.2.0';
23              
24 58     58   4410 use Moo::Role;
  58         134  
  58         444  
25              
26 58         556 use MongoDB::_Types qw(
27             ReadPreference
28             ReadConcern
29 58     58   21462 );
  58         166  
30 58         396 use Types::Standard qw(
31             Maybe
32 58     58   67627 );
  58         135  
33              
34 58     58   41066 use namespace::clean;
  58         137  
  58         471  
35              
36             # PERL-573 Would like to refactor to remove Maybe types for
37             # read_preference and read_concern
38             has read_preference => (
39             is => 'rw', # rw for Op::_Query which can be modified by Cursor
40             required => 1,
41             isa => ReadPreference,
42             );
43              
44             has read_concern => (
45             is => 'ro',
46             required => 1,
47             isa => ReadConcern,
48             );
49              
50             1;