ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/lib/AE.pm
(Generate patch)

Comparing AnyEvent/lib/AE.pm (file contents):
Revision 1.4 by root, Sat Dec 5 02:58:30 2009 UTC vs.
Revision 1.15 by root, Thu Apr 5 04:12:21 2012 UTC

4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 use AnyEvent; # not AE 7 use AnyEvent; # not AE
8 8
9 # file handle or descriptor readable
10 my $w = AE::io $fh, 0, sub { ... };
11
12 # one-shot or repeating timers
13 my $w = AE::timer $seconds, 0, sub { ... }; # once
14 my $w = AE::timer $seconds, $interval, sub { ... }; # repeated
15
16 print AE::now; # prints current event loop time
17 print AE::time; # think Time::HiRes::time or simply CORE::time.
18
19 # POSIX signal
20 my $w = AE::signal TERM => sub { ... };
21
22 # child process exit
23 my $w = AE::child $pid, sub {
24 my ($pid, $status) = @_;
25 ...
26 };
27
28 # called when event loop idle (if applicable)
29 my $w = AE::idle sub { ... };
30
31 my $cv = AE::cv; # stores whether a condition was flagged
32 $cv->send; # wake up current and all future recv's
33 $cv->recv; # enters "main loop" till $condvar gets ->send
34 # use a condvar in callback mode:
35 $cv->cb (sub { $_[0]->recv });
36
37
9=head1 DESCRIPTION 38=head1 DESCRIPTION
10 39
11This module documents the new simpler AnyEvent API. 40This module documents the new simpler AnyEvent API.
12 41
13The rationale for the new API is that experience with L<EV> shows that 42The rationale for the new API is that experience with L<EV> shows that
14this API actually "works", despite it's lack of extensibility, leading to 43this API actually "works", despite its lack of extensibility, leading to
15a shorter, easier and faster API. 44a shorter, easier and faster API.
16 45
17The main difference to AnyEvent is that instead of method calls, function 46The main differences from AnyEvent is that function calls are used
18calls are used, and that no named arguments are used. 47instead of method calls, and that no named arguments are used.
19 48
20This makes calls to watcher creation functions really short, which can 49This makes calls to watcher creation functions really short, which can
21make a program more readable, despite the lack of named parameters. 50make a program more readable despite the lack of named parameters.
22Function calls also allow more static type checking than method calls, so 51Function calls also allow more static type checking than method calls, so
23many mistakes are caught at compiletime with this API. 52many mistakes are caught at compile-time with this API.
24 53
25Also, some backends (Perl and EV) are so fast that the method call 54Also, some backends (Perl and EV) are so fast that the method call
26overhead is very noticable (with EV it increases the time five- to 55overhead is very noticeable (with EV it increases the execution time five-
27six-fold, with Perl the method call overhead is about a factor of two). 56to six-fold, with Perl the method call overhead is about a factor of two).
28
29At the moment, there will be no checking (L<AnyEvent::Strict> does not
30affect his API), so the L<AnyEvent> API has a definite advantage here
31still.
32 57
33Note that the C<AE> API is an alternative to, not the future version of, 58Note that the C<AE> API is an alternative to, not the future version of,
34the AnyEvent API. Both APIs can be used interchangably and and there are 59the AnyEvent API. Both APIs can be used interchangeably and there are
35no plans to "switch", so if in doubt, use the L<AnyEvent> API. 60no plans to "switch", so if in doubt, feel free to use the L<AnyEvent>
61API in new code.
36 62
37As the AE API is complementary, not everything in the AnyEvent API is 63As the AE API is complementary, not everything in the AnyEvent API is
38available, so you still need to use AnyEvent for the finer stuff. Also, 64available, and you still need to use AnyEvent for the finer stuff. Also,
39you should not C<use AE> directly, C<use AnyEvent> will provide the AE 65you should not C<use AE> directly, C<use AnyEvent> will provide the AE
40namespace. 66namespace.
41 67
68At the moment, these functions will become slower then their method-call
69counterparts when using L<AnyEvent::Strict> or L<AnyEvent::Debug>::wrap.
70
42=head2 FUNCTIONS 71=head2 FUNCTIONS
43 72
44This section briefly describes the alternative watcher 73This section briefly describes the alternative watcher constructors and
45constructors. Semantics and any methods are not described here, please 74other functions available inside the C<AE> namespace. Semantics are not
75described here; please refer to the description of the function or method
46refer to the L<AnyEvent> manpage for the details. 76with the same name in the L<AnyEvent> manpage for the details.
47 77
48=over 4 78=over 4
49 79
50=cut 80=cut
51 81
66 96
67Example: wait until STDIN becomes readable. 97Example: wait until STDIN becomes readable.
68 98
69 $stdin_ready = AE::io *STDIN, 0, sub { scalar <STDIN> }; 99 $stdin_ready = AE::io *STDIN, 0, sub { scalar <STDIN> };
70 100
71Example. wait until STDOUT becomes writable and print something. 101Example: wait until STDOUT becomes writable and print something.
72 102
73 $stdout_ready = AE::io *STDOUT, 1, sub { print STDOUT "woaw\n" }; 103 $stdout_ready = AE::io *STDOUT, 1, sub { print STDOUT "woaw\n" };
74 104
75=item $w = AE::timer $after, $interval, $cb 105=item $w = AE::timer $after, $interval, $cb
76 106
77Creates a timer watcher that invokes the callback C<$cb> after at least 107Creates a timer watcher that invokes the callback C<$cb> after at least
78C<$after> second have passed (C<$after> can be negative or C<0>). 108C<$after> second have passed (C<$after> can be negative or C<0>).
79 109
80If C<$interval> is C<0>, then the clalback will only be invoked once, 110If C<$interval> is C<0>, then the callback will only be invoked once,
81otherwise it must be a positive number of seconds that specified the 111otherwise it must be a positive number of seconds that specifies the
82interval between successive invocations of the callback. 112interval between successive invocations of the callback.
83 113
84Example: print "too late" after at least one second has passed. 114Example: print "too late" after at least one second has passed.
85 115
86 $timer_once = AE::timer 1, 0, sub { print "too late\n" }; 116 $timer_once = AE::timer 1, 0, sub { print "too late\n" };
89 119
90 $timer_repeated = AE::timer 0, 1, sub { print "blubb\n" }; 120 $timer_repeated = AE::timer 0, 1, sub { print "blubb\n" };
91 121
92=item $w = AE::signal $signame, $cb 122=item $w = AE::signal $signame, $cb
93 123
94Invoke the callback c<$cb> each time one or more occurences of the named 124Invoke the callback C<$cb> each time one or more occurrences of the
95signal C<$signame> are detected. 125named signal C<$signame> are detected.
96 126
97=item $w = AE::child $pid, $cb 127=item $w = AE::child $pid, $cb
98 128
99Invokes the callbakc C<$cb> when the child with the given C<$pid> exits 129Invokes the callback C<$cb> when the child with the given C<$pid> exits
100(or all children, when C<$pid> is zero). 130(or all children, when C<$pid> is zero).
101 131
102The callback will get the actual pid and exit status as arguments. 132The callback will get the actual pid and exit status as arguments.
103 133
104=item $w = AE::idle $cb 134=item $w = AE::idle $cb
125 155
126=item AE::time 156=item AE::time
127 157
128Return the current time (not cached, always consults a hardware clock). 158Return the current time (not cached, always consults a hardware clock).
129 159
160=item AE::postpone { BLOCK }
161
162Exactly the same as C<AnyEvent:::postpone>.
163
164=item AE::log $level, $msg[, @args]
165
166Exactly the same as C<AnyEvent::log> (or C<AnyEvent::Log::log>).
167
130=back 168=back
131 169
132=head1 AUTHOR 170=head1 AUTHOR
133 171
134 Marc Lehmann <schmorp@schmorp.de> 172 Marc Lehmann <schmorp@schmorp.de>
135 http://home.schmorp.de/ 173 http://software.schmorp.de/pkg/AnyEvent.html
136 174
137=cut 175=cut
138 176
1391 1771
140 178

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines