line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
use strict; |
3
|
9
|
|
|
9
|
|
54
|
use warnings; |
|
9
|
|
|
|
|
25
|
|
|
9
|
|
|
|
|
199
|
|
4
|
9
|
|
|
9
|
|
44
|
|
|
9
|
|
|
|
|
9
|
|
|
9
|
|
|
|
|
203
|
|
5
|
|
|
|
|
|
|
use parent q(PLS::Server::Response); |
6
|
9
|
|
|
9
|
|
44
|
|
|
9
|
|
|
|
|
17
|
|
|
9
|
|
|
|
|
36
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
PLS::Server::Response::Cancelled |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 DESCRIPTION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
This is a message from the server to the client indicating that |
14
|
|
|
|
|
|
|
a request has been cancelled. |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=cut |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
{ |
19
|
|
|
|
|
|
|
my ($class, %args) = @_; |
20
|
|
|
|
|
|
|
|
21
|
1
|
|
|
1
|
0
|
7
|
return |
22
|
|
|
|
|
|
|
bless { |
23
|
|
|
|
|
|
|
id => $args{id}, |
24
|
|
|
|
|
|
|
error => {code => -32800, message => 'Request cancelled.'} |
25
|
|
|
|
|
|
|
}, $class; |
26
|
1
|
|
|
|
|
32
|
} ## end sub new |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
1; |