line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Message::Passing::Input::Null; |
2
|
2
|
|
|
2
|
|
108045
|
use Moo; |
|
2
|
|
|
|
|
11101
|
|
|
2
|
|
|
|
|
11
|
|
3
|
2
|
|
|
2
|
|
2940
|
use AnyEvent; |
|
2
|
|
|
|
|
5744
|
|
|
2
|
|
|
|
|
64
|
|
4
|
2
|
|
|
2
|
|
12
|
use Try::Tiny; |
|
2
|
|
|
|
|
10
|
|
|
2
|
|
|
|
|
129
|
|
5
|
2
|
|
|
2
|
|
556
|
use namespace::clean -except => 'meta'; |
|
2
|
|
|
|
|
10186
|
|
|
2
|
|
|
|
|
13
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
with 'Message::Passing::Role::Input'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Message::Passing::Input::Null - Null input |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 SYNOPSIS |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
message-pass --input Null --output STDOUT |
19
|
|
|
|
|
|
|
# Nothing ever happens.. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 DESCRIPTION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Does nothing (for testing). |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 SEE ALSO |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
L<Message::Passing> |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SPONSORSHIP |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This module exists due to the wonderful people at Suretec Systems Ltd. |
32
|
|
|
|
|
|
|
<http://www.suretecsystems.com/> who sponsored its development for its |
33
|
|
|
|
|
|
|
VoIP division called SureVoIP <http://www.surevoip.co.uk/> for use with |
34
|
|
|
|
|
|
|
the SureVoIP API - |
35
|
|
|
|
|
|
|
<http://www.surevoip.co.uk/support/wiki/api_documentation> |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 AUTHOR, COPYRIGHT AND LICENSE |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
See L<Message::Passing>. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=cut |