import p5-HTTP-Async-0.09
authorabs <abs>
Mon, 23 Jun 2008 03:35:35 +0000 (03:35 +0000)
committerabs <abs>
Mon, 23 Jun 2008 03:35:35 +0000 (03:35 +0000)
commitffdb60901933fa5422f1085c1bddf63b69cd7f0d
tree5e8e863f5a0a39eb6a34f224f4849b9488c7a6ef
parent9dbfb1a60439732c7e00080a6f99b12be68aa5e9
import p5-HTTP-Async-0.09

Although using the conventional LWP::UserAgent is fast and easy it
does have some drawbacks - the code execution blocks until the
request has been completed and it is only possible to process one
request at a time. HTTP::Async attempts to address these limitations.

It gives you a 'Async' object that you can add requests to, and
then get the requests off as they finish. The actual sending and
receiving of the requests is abstracted. As soon as you add a
request it is transmitted, if there are too many requests in progress
at the moment they are queued. There is no concept of starting or
stopping - it runs continuously.

Whilst it is waiting to receive data it returns control to the code
that called it meaning that you can carry out processing whilst
fetching data from the network. All without forking or threading
- it is actually done using select lists.
www/p5-HTTP-Async/DESCR [new file with mode: 0644]
www/p5-HTTP-Async/Makefile [new file with mode: 0644]
www/p5-HTTP-Async/distinfo [new file with mode: 0644]