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

Comparing AnyEvent/lib/AnyEvent.pm (file contents):
Revision 1.1 by root, Wed Apr 27 01:26:44 2005 UTC vs.
Revision 1.41 by root, Mon Apr 7 19:23:59 2008 UTC

1=head1 NAME 1=head1 NAME
2 2
3AnyEvent - ??? 3AnyEvent - provide framework for multiple event loops
4
5Event, Coro, Glib, Tk, Perl - various supported event loops
4 6
5=head1 SYNOPSIS 7=head1 SYNOPSIS
6 8
9 use AnyEvent;
10
11 my $w = AnyEvent->io (fh => $fh, poll => "r|w", cb => sub {
12 ...
13 });
14
15 my $w = AnyEvent->timer (after => $seconds, cb => sub {
16 ...
17 });
18
19 my $w = AnyEvent->condvar; # stores wether a condition was flagged
20 $w->wait; # enters "main loop" till $condvar gets ->broadcast
21 $w->broadcast; # wake up current and all future wait's
22
23=head1 WHY YOU SHOULD USE THIS MODULE
24
25Glib, POE, IO::Async, Event... CPAN offers event models by the dozen
26nowadays. So what is different about AnyEvent?
27
28Executive Summary: AnyEvent is I<compatible>, AnyEvent is I<free of
29policy> and AnyEvent is I<small and efficient>.
30
31First and foremost, I<AnyEvent is not an event model> itself, it only
32interfaces to whatever event model the main program happens to use in a
33pragmatic way. For event models and certain classes of immortals alike,
34the statement "there can only be one" is a bitter reality, and AnyEvent
35helps hiding the differences.
36
37The goal of AnyEvent is to offer module authors the ability to do event
38programming (waiting for I/O or timer events) without subscribing to a
39religion, a way of living, and most importantly: without forcing your
40module users into the same thing by forcing them to use the same event
41model you use.
42
43For modules like POE or IO::Async (the latter of which is actually
44named confusingly, as it does neither do I/O nor does it do anything
45asynchronously...), using them in your module is like joining a
46cult: After you joined, you are dependent on them and you cannot use
47anything else, as it is simply incompatible to everything that isn't
48itself.
49
50AnyEvent + POE works fine. AnyEvent + Glib works fine. AnyEvent + Tk
51works fine etc. etc. but none of these work together with the rest: POE
52+ IO::Async? no go. Tk + Event? no go. If your module uses one of
53those, every user of your module has to use it, too. If your module
54uses AnyEvent, it works transparently with all event models it supports
55(including stuff like POE and IO::Async).
56
57In addition of being free of having to use I<the one and only true event
58model>, AnyEvent also is free of bloat and policy: with POE or similar
59modules, you get an enourmous amount of code and strict rules you have
60to follow. AnyEvent, on the other hand, is lean and to the point by only
61offering the functionality that is useful, in as thin as a wrapper as
62technically possible.
63
64
7=head1 DESCRIPTION 65=head1 DESCRIPTION
8 66
67L<AnyEvent> provides an identical interface to multiple event loops. This
68allows module authors to utilise an event loop without forcing module
69users to use the same event loop (as only a single event loop can coexist
70peacefully at any one time).
71
72The interface itself is vaguely similar but not identical to the Event
73module.
74
75On the first call of any method, the module tries to detect the currently
76loaded event loop by probing wether any of the following modules is
77loaded: L<Coro::Event>, L<Event>, L<Glib>, L<Tk>. The first one found is
78used. If none is found, the module tries to load these modules in the
79order given. The first one that could be successfully loaded will be
80used. If still none could be found, AnyEvent will fall back to a pure-perl
81event loop, which is also not very efficient.
82
83Because AnyEvent first checks for modules that are already loaded, loading
84an Event model explicitly before first using AnyEvent will likely make
85that model the default. For example:
86
87 use Tk;
88 use AnyEvent;
89
90 # .. AnyEvent will likely default to Tk
91
92The pure-perl implementation of AnyEvent is called
93C<AnyEvent::Impl::Perl>. Like other event modules you can load it
94explicitly.
95
96=head1 WATCHERS
97
98AnyEvent has the central concept of a I<watcher>, which is an object that
99stores relevant data for each kind of event you are waiting for, such as
100the callback to call, the filehandle to watch, etc.
101
102These watchers are normal Perl objects with normal Perl lifetime. After
103creating a watcher it will immediately "watch" for events and invoke
104the callback. To disable the watcher you have to destroy it (e.g. by
105setting the variable that stores it to C<undef> or otherwise deleting all
106references to it).
107
108All watchers are created by calling a method on the C<AnyEvent> class.
109
110=head2 IO WATCHERS
111
112You can create I/O watcher by calling the C<< AnyEvent->io >> method with
113the following mandatory arguments:
114
115C<fh> the Perl I<filehandle> (not filedescriptor) to watch for
116events. C<poll> must be a string that is either C<r> or C<w>, that creates
117a watcher waiting for "r"eadable or "w"ritable events. C<cb> the callback
118to invoke everytime the filehandle becomes ready.
119
120Only one io watcher per C<fh> and C<poll> combination is allowed (i.e. on
121a socket you can have one r + one w, not any more (limitation comes from
122Tk - if you are sure you are not using Tk this limitation is gone).
123
124Filehandles will be kept alive, so as long as the watcher exists, the
125filehandle exists, too.
126
127Example:
128
129 # wait for readability of STDIN, then read a line and disable the watcher
130 my $w; $w = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
131 chomp (my $input = <STDIN>);
132 warn "read: $input\n";
133 undef $w;
134 });
135
136=head2 TIME WATCHERS
137
138You can create a time watcher by calling the C<< AnyEvent->timer >>
139method with the following mandatory arguments:
140
141C<after> after how many seconds (fractions are supported) should the timer
142activate. C<cb> the callback to invoke.
143
144The timer callback will be invoked at most once: if you want a repeating
145timer you have to create a new watcher (this is a limitation by both Tk
146and Glib).
147
148Example:
149
150 # fire an event after 7.7 seconds
151 my $w = AnyEvent->timer (after => 7.7, cb => sub {
152 warn "timeout\n";
153 });
154
155 # to cancel the timer:
156 undef $w;
157
158=head2 CONDITION WATCHERS
159
160Condition watchers can be created by calling the C<< AnyEvent->condvar >>
161method without any arguments.
162
163A condition watcher watches for a condition - precisely that the C<<
164->broadcast >> method has been called.
165
166Note that condition watchers recurse into the event loop - if you have
167two watchers that call C<< ->wait >> in a round-robbin fashion, you
168lose. Therefore, condition watchers are good to export to your caller, but
169you should avoid making a blocking wait, at least in callbacks, as this
170usually asks for trouble.
171
172The watcher has only two methods:
173
9=over 4 174=over 4
10 175
176=item $cv->wait
177
178Wait (blocking if necessary) until the C<< ->broadcast >> method has been
179called on c<$cv>, while servicing other watchers normally.
180
181Not all event models support a blocking wait - some die in that case, so
182if you are using this from a module, never require a blocking wait, but
183let the caller decide wether the call will block or not (for example,
184by coupling condition variables with some kind of request results and
185supporting callbacks so the caller knows that getting the result will not
186block, while still suppporting blockign waits if the caller so desires).
187
188You can only wait once on a condition - additional calls will return
189immediately.
190
191=item $cv->broadcast
192
193Flag the condition as ready - a running C<< ->wait >> and all further
194calls to C<wait> will return after this method has been called. If nobody
195is waiting the broadcast will be remembered..
196
197Example:
198
199 # wait till the result is ready
200 my $result_ready = AnyEvent->condvar;
201
202 # do something such as adding a timer
203 # or socket watcher the calls $result_ready->broadcast
204 # when the "result" is ready.
205
206 $result_ready->wait;
207
208=back
209
210=head2 SIGNAL WATCHERS
211
212You can listen for signals using a signal watcher, C<signal> is the signal
213I<name> without any C<SIG> prefix. Multiple signals events can be clumped
214together into one callback invocation, and callback invocation might or
215might not be asynchronous.
216
217These watchers might use C<%SIG>, so programs overwriting those signals
218directly will likely not work correctly.
219
220Example: exit on SIGINT
221
222 my $w = AnyEvent->signal (signal => "INT", cb => sub { exit 1 });
223
224=head2 CHILD PROCESS WATCHERS
225
226You can also listen for the status of a child process specified by the
227C<pid> argument (or any child if the pid argument is 0). The watcher will
228trigger as often as status change for the child are received. This works
229by installing a signal handler for C<SIGCHLD>. The callback will be called with
230the pid and exit status (as returned by waitpid).
231
232Example: wait for pid 1333
233
234 my $w = AnyEvent->child (pid => 1333, cb => sub { warn "exit status $?" });
235
236=head1 GLOBALS
237
238=over 4
239
240=item $AnyEvent::MODEL
241
242Contains C<undef> until the first watcher is being created. Then it
243contains the event model that is being used, which is the name of the
244Perl class implementing the model. This class is usually one of the
245C<AnyEvent::Impl:xxx> modules, but can be any other class in the case
246AnyEvent has been extended at runtime (e.g. in I<rxvt-unicode>).
247
248The known classes so far are:
249
250 AnyEvent::Impl::CoroEV based on Coro::EV, best choice.
251 AnyEvent::Impl::EV based on EV (an interface to libev, also best choice).
252 AnyEvent::Impl::CoroEvent based on Coro::Event, second best choice.
253 AnyEvent::Impl::Event based on Event, also second best choice :)
254 AnyEvent::Impl::Glib based on Glib, second-best choice.
255 AnyEvent::Impl::Tk based on Tk, very bad choice.
256 AnyEvent::Impl::Perl pure-perl implementation, inefficient.
257
258=item AnyEvent::detect
259
260Returns C<$AnyEvent::MODEL>, forcing autodetection of the event model if
261necessary. You should only call this function right before you would have
262created an AnyEvent watcher anyway, that is, very late at runtime.
263
264=back
265
266=head1 WHAT TO DO IN A MODULE
267
268As a module author, you should "use AnyEvent" and call AnyEvent methods
269freely, but you should not load a specific event module or rely on it.
270
271Be careful when you create watchers in the module body - Anyevent will
272decide which event module to use as soon as the first method is called, so
273by calling AnyEvent in your module body you force the user of your module
274to load the event module first.
275
276=head1 WHAT TO DO IN THE MAIN PROGRAM
277
278There will always be a single main program - the only place that should
279dictate which event model to use.
280
281If it doesn't care, it can just "use AnyEvent" and use it itself, or not
282do anything special and let AnyEvent decide which implementation to chose.
283
284If the main program relies on a specific event model (for example, in Gtk2
285programs you have to rely on either Glib or Glib::Event), you should load
286it before loading AnyEvent or any module that uses it, generally, as early
287as possible. The reason is that modules might create watchers when they
288are loaded, and AnyEvent will decide on the event model to use as soon as
289it creates watchers, and it might chose the wrong one unless you load the
290correct one yourself.
291
292You can chose to use a rather inefficient pure-perl implementation by
293loading the C<AnyEvent::Impl::Perl> module, but letting AnyEvent chose is
294generally better.
295
11=cut 296=cut
12 297
13package AnyEvent; 298package AnyEvent;
14 299
300no warnings;
301use strict;
302
15use Carp; 303use Carp;
16 304
17$VERSION = 0.1; 305our $VERSION = '3.0';
306our $MODEL;
18 307
19no warnings; 308our $AUTOLOAD;
309our @ISA;
310
311our $verbose = $ENV{PERL_ANYEVENT_VERBOSE}*1;
312
313our @REGISTRY;
20 314
21my @models = ( 315my @models = (
22 [Coro => Coro::Event::], 316 [Coro::EV:: => AnyEvent::Impl::CoroEV::],
23 [Event => Event::], 317 [EV:: => AnyEvent::Impl::EV::],
24 [Glib => Glib::], 318 [Coro::Event:: => AnyEvent::Impl::CoroEvent::],
25 [Tk => Tk::], 319 [Event:: => AnyEvent::Impl::Event::],
320 [Glib:: => AnyEvent::Impl::Glib::],
321 [Tk:: => AnyEvent::Impl::Tk::],
322 [AnyEvent::Impl::Perl:: => AnyEvent::Impl::Perl::],
26); 323);
27 324
325our %method = map +($_ => 1), qw(io timer condvar broadcast wait signal one_event DESTROY);
326
327sub detect() {
328 unless ($MODEL) {
329 no strict 'refs';
330
331 # check for already loaded models
332 for (@REGISTRY, @models) {
333 my ($package, $model) = @$_;
334 if (${"$package\::VERSION"} > 0) {
335 if (eval "require $model") {
336 $MODEL = $model;
337 warn "AnyEvent: found model '$model', using it.\n" if $verbose > 1;
338 last;
339 }
340 }
341 }
342
343 unless ($MODEL) {
344 # try to load a model
345
346 for (@REGISTRY, @models) {
347 my ($package, $model) = @$_;
348 if (eval "require $package"
349 and ${"$package\::VERSION"} > 0
350 and eval "require $model") {
351 $MODEL = $model;
352 warn "AnyEvent: autoprobed and loaded model '$model', using it.\n" if $verbose > 1;
353 last;
354 }
355 }
356
357 $MODEL
358 or die "No event module selected for AnyEvent and autodetect failed. Install any one of these modules: EV (or Coro+EV), Event (or Coro+Event), Glib or Tk.";
359 }
360
361 unshift @ISA, $MODEL;
362 push @{"$MODEL\::ISA"}, "AnyEvent::Base";
363 }
364
365 $MODEL
366}
367
28sub AUTOLOAD { 368sub AUTOLOAD {
29 $AUTOLOAD =~ s/.*://; 369 (my $func = $AUTOLOAD) =~ s/.*://;
30 370
31 for (@models) { 371 $method{$func}
32 my ($model, $package) = @$_; 372 or croak "$func: not a valid method for AnyEvent objects";
33 if (defined ${"$package\::VERSION"}) { 373
34 $EVENT = "AnyEvent::Impl::$model"; 374 detect unless $MODEL;
35 eval "require $EVENT"; die if $@; 375
36 goto &{"$EVENT\::$AUTOLOAD"}; 376 my $class = shift;
37 } 377 $class->$func (@_);
378}
379
380package AnyEvent::Base;
381
382# default implementation for ->condvar, ->wait, ->broadcast
383
384sub condvar {
385 bless \my $flag, "AnyEvent::Base::CondVar"
386}
387
388sub AnyEvent::Base::CondVar::broadcast {
389 ${$_[0]}++;
390}
391
392sub AnyEvent::Base::CondVar::wait {
393 AnyEvent->one_event while !${$_[0]};
394}
395
396# default implementation for ->signal
397
398our %SIG_CB;
399
400sub signal {
401 my (undef, %arg) = @_;
402
403 my $signal = uc $arg{signal}
404 or Carp::croak "required option 'signal' is missing";
405
406 $SIG_CB{$signal}{$arg{cb}} = $arg{cb};
407 $SIG{$signal} ||= sub {
408 $_->() for values %{ $SIG_CB{$signal} || {} };
409 };
410
411 bless [$signal, $arg{cb}], "AnyEvent::Base::Signal"
412}
413
414sub AnyEvent::Base::Signal::DESTROY {
415 my ($signal, $cb) = @{$_[0]};
416
417 delete $SIG_CB{$signal}{$cb};
418
419 $SIG{$signal} = 'DEFAULT' unless keys %{ $SIG_CB{$signal} };
420}
421
422# default implementation for ->child
423
424our %PID_CB;
425our $CHLD_W;
426our $CHLD_DELAY_W;
427our $PID_IDLE;
428our $WNOHANG;
429
430sub _child_wait {
431 while (0 < (my $pid = waitpid -1, $WNOHANG)) {
432 $_->($pid, $?) for (values %{ $PID_CB{$pid} || {} }),
433 (values %{ $PID_CB{0} || {} });
38 } 434 }
39 435
40 for (@models) { 436 undef $PID_IDLE;
41 my ($model, $package) = @$_; 437}
42 $EVENT = "AnyEvent::Impl::$model"; 438
43 if (eval "require $EVENT") { 439sub _sigchld {
44 goto &{"$EVENT\::$AUTOLOAD"}; 440 # make sure we deliver these changes "synchronous" with the event loop.
45 } 441 $CHLD_DELAY_W ||= AnyEvent->timer (after => 0, cb => sub {
442 undef $CHLD_DELAY_W;
443 &_child_wait;
444 });
445}
446
447sub child {
448 my (undef, %arg) = @_;
449
450 defined (my $pid = $arg{pid} + 0)
451 or Carp::croak "required option 'pid' is missing";
452
453 $PID_CB{$pid}{$arg{cb}} = $arg{cb};
454
455 unless ($WNOHANG) {
456 $WNOHANG = eval { require POSIX; &POSIX::WNOHANG } || 1;
46 } 457 }
47 458
48 die "No event module selected for AnyEvent and autodetect failed. Install any of these: Coro, Event, Glib or Tk."; 459 unless ($CHLD_W) {
49} 460 $CHLD_W = AnyEvent->signal (signal => 'CHLD', cb => \&_sigchld);
461 # child could be a zombie already, so make at least one round
462 &_sigchld;
463 }
50 464
511; 465 bless [$pid, $arg{cb}], "AnyEvent::Base::Child"
466}
52 467
468sub AnyEvent::Base::Child::DESTROY {
469 my ($pid, $cb) = @{$_[0]};
470
471 delete $PID_CB{$pid}{$cb};
472 delete $PID_CB{$pid} unless keys %{ $PID_CB{$pid} };
473
474 undef $CHLD_W unless keys %PID_CB;
475}
476
477=head1 SUPPLYING YOUR OWN EVENT MODEL INTERFACE
478
479If you need to support another event library which isn't directly
480supported by AnyEvent, you can supply your own interface to it by
481pushing, before the first watcher gets created, the package name of
482the event module and the package name of the interface to use onto
483C<@AnyEvent::REGISTRY>. You can do that before and even without loading
484AnyEvent.
485
486Example:
487
488 push @AnyEvent::REGISTRY, [urxvt => urxvt::anyevent::];
489
490This tells AnyEvent to (literally) use the C<urxvt::anyevent::>
491package/class when it finds the C<urxvt> package/module is loaded. When
492AnyEvent is loaded and asked to find a suitable event model, it will
493first check for the presence of urxvt.
494
495The class should provide implementations for all watcher types (see
496L<AnyEvent::Impl::Event> (source code), L<AnyEvent::Impl::Glib>
497(Source code) and so on for actual examples, use C<perldoc -m
498AnyEvent::Impl::Glib> to see the sources).
499
500The above isn't fictitious, the I<rxvt-unicode> (a.k.a. urxvt)
501uses the above line as-is. An interface isn't included in AnyEvent
502because it doesn't make sense outside the embedded interpreter inside
503I<rxvt-unicode>, and it is updated and maintained as part of the
504I<rxvt-unicode> distribution.
505
506I<rxvt-unicode> also cheats a bit by not providing blocking access to
507condition variables: code blocking while waiting for a condition will
508C<die>. This still works with most modules/usages, and blocking calls must
509not be in an interactive application, so it makes sense.
510
511=head1 ENVIRONMENT VARIABLES
512
513The following environment variables are used by this module:
514
515C<PERL_ANYEVENT_VERBOSE> when set to C<2> or higher, reports which event
516model gets used.
517
518=head1 EXAMPLE
519
520The following program uses an io watcher to read data from stdin, a timer
521to display a message once per second, and a condvar to exit the program
522when the user enters quit:
523
524 use AnyEvent;
525
526 my $cv = AnyEvent->condvar;
527
528 my $io_watcher = AnyEvent->io (fh => \*STDIN, poll => 'r', cb => sub {
529 warn "io event <$_[0]>\n"; # will always output <r>
530 chomp (my $input = <STDIN>); # read a line
531 warn "read: $input\n"; # output what has been read
532 $cv->broadcast if $input =~ /^q/i; # quit program if /^q/i
533 });
534
535 my $time_watcher; # can only be used once
536
537 sub new_timer {
538 $timer = AnyEvent->timer (after => 1, cb => sub {
539 warn "timeout\n"; # print 'timeout' about every second
540 &new_timer; # and restart the time
541 });
542 }
543
544 new_timer; # create first timer
545
546 $cv->wait; # wait until user enters /^q/i
547
548=head1 REAL-WORLD EXAMPLE
549
550Consider the L<Net::FCP> module. It features (among others) the following
551API calls, which are to freenet what HTTP GET requests are to http:
552
553 my $data = $fcp->client_get ($url); # blocks
554
555 my $transaction = $fcp->txn_client_get ($url); # does not block
556 $transaction->cb ( sub { ... } ); # set optional result callback
557 my $data = $transaction->result; # possibly blocks
558
559The C<client_get> method works like C<LWP::Simple::get>: it requests the
560given URL and waits till the data has arrived. It is defined to be:
561
562 sub client_get { $_[0]->txn_client_get ($_[1])->result }
563
564And in fact is automatically generated. This is the blocking API of
565L<Net::FCP>, and it works as simple as in any other, similar, module.
566
567More complicated is C<txn_client_get>: It only creates a transaction
568(completion, result, ...) object and initiates the transaction.
569
570 my $txn = bless { }, Net::FCP::Txn::;
571
572It also creates a condition variable that is used to signal the completion
573of the request:
574
575 $txn->{finished} = AnyAvent->condvar;
576
577It then creates a socket in non-blocking mode.
578
579 socket $txn->{fh}, ...;
580 fcntl $txn->{fh}, F_SETFL, O_NONBLOCK;
581 connect $txn->{fh}, ...
582 and !$!{EWOULDBLOCK}
583 and !$!{EINPROGRESS}
584 and Carp::croak "unable to connect: $!\n";
585
586Then it creates a write-watcher which gets called whenever an error occurs
587or the connection succeeds:
588
589 $txn->{w} = AnyEvent->io (fh => $txn->{fh}, poll => 'w', cb => sub { $txn->fh_ready_w });
590
591And returns this transaction object. The C<fh_ready_w> callback gets
592called as soon as the event loop detects that the socket is ready for
593writing.
594
595The C<fh_ready_w> method makes the socket blocking again, writes the
596request data and replaces the watcher by a read watcher (waiting for reply
597data). The actual code is more complicated, but that doesn't matter for
598this example:
599
600 fcntl $txn->{fh}, F_SETFL, 0;
601 syswrite $txn->{fh}, $txn->{request}
602 or die "connection or write error";
603 $txn->{w} = AnyEvent->io (fh => $txn->{fh}, poll => 'r', cb => sub { $txn->fh_ready_r });
604
605Again, C<fh_ready_r> waits till all data has arrived, and then stores the
606result and signals any possible waiters that the request ahs finished:
607
608 sysread $txn->{fh}, $txn->{buf}, length $txn->{$buf};
609
610 if (end-of-file or data complete) {
611 $txn->{result} = $txn->{buf};
612 $txn->{finished}->broadcast;
613 $txb->{cb}->($txn) of $txn->{cb}; # also call callback
614 }
615
616The C<result> method, finally, just waits for the finished signal (if the
617request was already finished, it doesn't wait, of course, and returns the
618data:
619
620 $txn->{finished}->wait;
621 return $txn->{result};
622
623The actual code goes further and collects all errors (C<die>s, exceptions)
624that occured during request processing. The C<result> method detects
625wether an exception as thrown (it is stored inside the $txn object)
626and just throws the exception, which means connection errors and other
627problems get reported tot he code that tries to use the result, not in a
628random callback.
629
630All of this enables the following usage styles:
631
6321. Blocking:
633
634 my $data = $fcp->client_get ($url);
635
6362. Blocking, but parallelizing:
637
638 my @datas = map $_->result,
639 map $fcp->txn_client_get ($_),
640 @urls;
641
642Both blocking examples work without the module user having to know
643anything about events.
644
6453a. Event-based in a main program, using any support Event module:
646
647 use Event;
648
649 $fcp->txn_client_get ($url)->cb (sub {
650 my $txn = shift;
651 my $data = $txn->result;
652 ...
653 });
654
655 Event::loop;
656
6573b. The module user could use AnyEvent, too:
658
659 use AnyEvent;
660
661 my $quit = AnyEvent->condvar;
662
663 $fcp->txn_client_get ($url)->cb (sub {
664 ...
665 $quit->broadcast;
666 });
667
668 $quit->wait;
669
670=head1 SEE ALSO
671
672Event modules: L<Coro::Event>, L<Coro>, L<Event>, L<Glib::Event>, L<Glib>.
673
674Implementations: L<AnyEvent::Impl::Coro>, L<AnyEvent::Impl::Event>, L<AnyEvent::Impl::Glib>, L<AnyEvent::Impl::Tk>.
675
676Nontrivial usage example: L<Net::FCP>.
677
678=head1
679
680=cut
681
6821
683

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines