line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Beekeeper::JSONRPC; |
2
|
|
|
|
|
|
|
|
3
|
11
|
|
|
11
|
|
1027
|
use strict; |
|
11
|
|
|
|
|
21
|
|
|
11
|
|
|
|
|
332
|
|
4
|
11
|
|
|
11
|
|
56
|
use warnings; |
|
11
|
|
|
|
|
26
|
|
|
11
|
|
|
|
|
511
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.10'; |
7
|
|
|
|
|
|
|
|
8
|
11
|
|
|
11
|
|
4654
|
use Beekeeper::JSONRPC::Request; |
|
11
|
|
|
|
|
25
|
|
|
11
|
|
|
|
|
373
|
|
9
|
11
|
|
|
11
|
|
4452
|
use Beekeeper::JSONRPC::Notification; |
|
11
|
|
|
|
|
26
|
|
|
11
|
|
|
|
|
359
|
|
10
|
11
|
|
|
11
|
|
4669
|
use Beekeeper::JSONRPC::Response; |
|
11
|
|
|
|
|
29
|
|
|
11
|
|
|
|
|
357
|
|
11
|
11
|
|
|
11
|
|
4675
|
use Beekeeper::JSONRPC::Error; |
|
11
|
|
|
|
|
26
|
|
|
11
|
|
|
|
|
1398
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub request { |
15
|
0
|
|
|
0
|
0
|
|
my $class = shift; |
16
|
0
|
|
|
|
|
|
Beekeeper::JSONRPC::Request->new(@_); |
17
|
|
|
|
|
|
|
} |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
sub notification { |
20
|
0
|
|
|
0
|
0
|
|
my $class = shift; |
21
|
0
|
|
|
|
|
|
Beekeeper::JSONRPC::Notification->new(@_); |
22
|
|
|
|
|
|
|
} |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
sub response { |
25
|
0
|
|
|
0
|
0
|
|
my $class = shift; |
26
|
0
|
|
|
|
|
|
Beekeeper::JSONRPC::Response->new(@_); |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
sub error { |
30
|
0
|
|
|
0
|
0
|
|
my $class = shift; |
31
|
0
|
|
|
|
|
|
Beekeeper::JSONRPC::Error->new(@_); |
32
|
|
|
|
|
|
|
} |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
1; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
__END__ |