| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
#----------------------------------------------------------------------- |
|
2
|
|
|
|
|
|
|
# Copyright (C) 2002-2015 by Jörn Reder . |
|
3
|
|
|
|
|
|
|
# All Rights Reserved. See file COPYRIGHT for details. |
|
4
|
|
|
|
|
|
|
# |
|
5
|
|
|
|
|
|
|
# This module is part of Event::RPC, which is free software; you can |
|
6
|
|
|
|
|
|
|
# redistribute it and/or modify it under the same terms as Perl itself. |
|
7
|
|
|
|
|
|
|
#----------------------------------------------------------------------- |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Event::RPC::Loop; |
|
10
|
|
|
|
|
|
|
|
|
11
|
17
|
|
|
17
|
|
116
|
use strict; |
|
|
17
|
|
|
|
|
44
|
|
|
|
17
|
|
|
|
|
481
|
|
|
12
|
17
|
|
|
17
|
|
99
|
use utf8; |
|
|
17
|
|
|
|
|
52
|
|
|
|
17
|
|
|
|
|
112
|
|
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub new { |
|
15
|
17
|
|
|
17
|
0
|
45
|
my $class = shift; |
|
16
|
17
|
|
|
|
|
86
|
return bless {}, $class; |
|
17
|
|
|
|
|
|
|
} |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |