line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DB::Pluggable::Role::Initializer; |
2
|
1
|
|
|
1
|
|
860
|
use strict; |
|
1
|
|
|
|
|
22
|
|
|
1
|
|
|
|
|
56
|
|
3
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
24
|
|
4
|
1
|
|
|
1
|
|
22
|
use 5.010; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
47
|
|
5
|
1
|
|
|
1
|
|
4
|
use Role::Basic; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
6
|
|
|
|
|
|
|
with qw(Brickyard::Role::Plugin); |
7
|
|
|
|
|
|
|
requires qw(initialize); |
8
|
|
|
|
|
|
|
our $VERSION = '1.112001'; |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=pod |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
DB::Pluggable::Role::Initializer - Something that initializes the plugin system |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 IMPLEMENTING |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
The C role indicates that a plugin wants to do something |
20
|
|
|
|
|
|
|
when the plugin handler starts to run. The plugin must provide the |
21
|
|
|
|
|
|
|
C method. |