line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Adapter::Async::Bus; |
2
|
|
|
|
|
|
|
$Adapter::Async::Bus::VERSION = '0.019'; |
3
|
3
|
|
|
3
|
|
10
|
use strict; |
|
3
|
|
|
|
|
2
|
|
|
3
|
|
|
|
|
62
|
|
4
|
3
|
|
|
3
|
|
9
|
use warnings; |
|
3
|
|
|
|
|
3
|
|
|
3
|
|
|
|
|
61
|
|
5
|
|
|
|
|
|
|
|
6
|
3
|
|
|
3
|
|
7
|
use parent qw(Mixin::Event::Dispatch); |
|
3
|
|
|
|
|
3
|
|
|
3
|
|
|
|
|
18
|
|
7
|
3
|
|
|
3
|
|
10765
|
use constant EVENT_DISPATCH_ON_FALLBACK => 0; |
|
3
|
|
|
|
|
3
|
|
|
3
|
|
|
|
|
182
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Adapter::Async::Bus - |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 VERSION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
version 0.018 |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 SYNOPSIS |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 DESCRIPTION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 METHODS |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=cut |
24
|
|
|
|
|
|
|
|
25
|
4
|
|
|
4
|
0
|
7
|
sub new { my $class = shift; bless { @_ }, $class } |
|
4
|
|
|
|
|
54
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 EVENTS |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=cut |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
1; |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
__END__ |