ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/eg/lwp
(Generate patch)

Comparing Coro/eg/lwp (file contents):
Revision 1.2 by root, Sat Jul 28 01:41:58 2001 UTC vs.
Revision 1.8 by root, Mon Nov 24 04:56:38 2008 UTC

1#!/usr/bin/perl 1#!/usr/bin/perl
2 2
3# this hack shows how one can overwrite IO::Socket::INET to provide 3use Coro;
4# non-blocking sockets by default. This makes lwp magically 4use Coro::AnyEvent;
5# non-blocking. I hope. 5use Coro::LWP; # should be use'd as early as possible
6use LWP::Simple;
6 7
7{ 8$SIG{PIPE} = 'IGNORE';
8 # this is all the required magic: we replace the constructor. 9
9 use Coro::Socket; 10my @pids;
10 use IO::Socket::INET; 11
11 sub IO::Socket::INET::new { 12for (1..1) {
12 shift; new Coro::Socket @_; 13 push @pid, async {
14 print "starting to fetch http://www.google.de/\n";
15 get "http://www.google.de/";
16 print "fetched http://www.google.de/\n";
17 };
18
19 push @pid, async {
20 print "starting to fetch http://www.yahoo.com/\n";
21 get "http://www.yahoo.com/";
22 print "fetched http://www.yahoo.com/\n";
13 }; 23 };
14} 24}
15 25
16use Coro; 26$_->join for @pid;
17use Coro::Event;
18use LWP::Simple;
19 27
20async {
21 print "hi\n";
22 get "http://localhost/";
23 print "ho\n";
24
25};
26
27async {
28 print "hi2\n";
29 get "http://localhost/";
30 print "ho2\n";
31};
32
33loop;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines