ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Event/Event.pm
(Generate patch)

Comparing Coro/Event/Event.pm (file contents):
Revision 1.34 by root, Wed Jan 25 21:43:58 2006 UTC vs.
Revision 1.40 by root, Fri Nov 24 15:34:33 2006 UTC

32function - it will be managed by this module. 32function - it will be managed by this module.
33 33
34Your application should just create all necessary coroutines and then call 34Your application should just create all necessary coroutines and then call
35Coro::Event::loop. 35Coro::Event::loop.
36 36
37Please note that even programs or modules (such as
38L<Coro::Handle|Coro::Handle>) that use "traditional"
39event-based/continuation style will run more efficient with this module
40then when using only Event.
41
37=over 4 42=over 4
38 43
39=cut 44=cut
40 45
41package Coro::Event; 46package Coro::Event;
44 49
45use Carp; 50use Carp;
46no warnings; 51no warnings;
47 52
48use Coro; 53use Coro;
54use Coro::Timer;
49use Event qw(loop unloop); # we are re-exporting this, cooool! 55use Event qw(loop unloop); # we are re-exporting this, cooool!
50 56
51use XSLoader; 57use XSLoader;
52 58
53use base Exporter::; 59use base Exporter::;
54 60
55our @EXPORT = qw(loop unloop sweep reschedule); 61our @EXPORT = qw(loop unloop sweep reschedule);
56 62
57BEGIN { 63BEGIN {
58 our $VERSION = 1.8; 64 our $VERSION = 1.9;
59 65
60 local $^W = 0; # avoid redefine warning for Coro::ready; 66 local $^W = 0; # avoid redefine warning for Coro::ready;
61 XSLoader::load __PACKAGE__, $VERSION; 67 XSLoader::load __PACKAGE__, $VERSION;
62} 68}
63 69
148 154
149This is the version of C<loop> you should use instead of C<Event::loop> 155This is the version of C<loop> you should use instead of C<Event::loop>
150when using this module - it will ensure correct scheduling in the presence 156when using this module - it will ensure correct scheduling in the presence
151of events. 157of events.
152 158
153=begin comment
154
155Unlike loop's counterpart it is not an error when no watchers are active -
156loop silently returns in this case, as if unloop(undef) were called.
157
158=end comment
159
160=cut
161
162# no longer do something special - it's done internally now
163
164#sub loop(;$) {
165# #local $Coro::idle = $Coro::current;
166# #Coro::schedule; # become idle task, which is implicitly ready
167# &Event::loop;
168#}
169
170=item unloop([$result]) 159=item unloop([$result])
171 160
172Same as Event::unloop (provided here for your convinience only). 161Same as Event::unloop (provided here for your convinience only).
173 162
174=cut 163=cut
175 164
176$Coro::idle = new Coro sub { 165$Coro::idle = \&Event::one_event; # inefficient
177 while () {
178 Event::one_event; # inefficient
179 Coro::schedule;
180 }
181};
182
183# provide hooks for Coro::Timer
184
185package Coro::Timer;
186
187unless ($override) {
188 $override = 1;
189 *_new_timer = sub {
190 Event->timer(at => $_[0], cb => $_[1]);
191 };
192}
193 166
1941; 1671;
168
169=back
195 170
196=head1 AUTHOR 171=head1 AUTHOR
197 172
198 Marc Lehmann <schmorp@schmorp.de> 173 Marc Lehmann <schmorp@schmorp.de>
199 http://home.schmorp.de/ 174 http://home.schmorp.de/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines