line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Copyright 2015 - 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
|
59
|
|
|
59
|
|
357
|
use strict; |
|
59
|
|
|
|
|
116
|
|
|
59
|
|
|
|
|
1622
|
|
16
|
59
|
|
|
59
|
|
276
|
use warnings; |
|
59
|
|
|
|
|
108
|
|
|
59
|
|
|
|
|
1803
|
|
17
|
|
|
|
|
|
|
package MongoDB::UnacknowledgedResult; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# ABSTRACT: MongoDB unacknowledged result object |
20
|
|
|
|
|
|
|
|
21
|
59
|
|
|
59
|
|
279
|
use version; |
|
59
|
|
|
|
|
117
|
|
|
59
|
|
|
|
|
279
|
|
22
|
|
|
|
|
|
|
our $VERSION = 'v2.2.2'; |
23
|
|
|
|
|
|
|
|
24
|
59
|
|
|
59
|
|
4001
|
use Moo; |
|
59
|
|
|
|
|
143
|
|
|
59
|
|
|
|
|
400
|
|
25
|
59
|
|
|
59
|
|
18033
|
use MongoDB::_Constants; |
|
59
|
|
|
|
|
134
|
|
|
59
|
|
|
|
|
6366
|
|
26
|
59
|
|
|
59
|
|
406
|
use namespace::clean; |
|
59
|
|
|
|
|
168
|
|
|
59
|
|
|
|
|
421
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
with $_ for qw( |
29
|
|
|
|
|
|
|
MongoDB::Role::_PrivateConstructor |
30
|
|
|
|
|
|
|
MongoDB::Role::_WriteResult |
31
|
|
|
|
|
|
|
); |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
#pod =method acknowledged |
34
|
|
|
|
|
|
|
#pod |
35
|
|
|
|
|
|
|
#pod Indicates whether this write result was acknowledged. Always false for |
36
|
|
|
|
|
|
|
#pod this class. |
37
|
|
|
|
|
|
|
#pod |
38
|
|
|
|
|
|
|
#pod =cut |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
sub acknowledged() { 0 }; |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
__END__ |