libhttp-async-perl 0.30-1 source package in Ubuntu

Changelog

libhttp-async-perl (0.30-1) unstable; urgency=medium

  * Team upload.
  * Import upstream version 0.30.
  * Bump debhelper compatibility level to 9.

 -- gregor herrmann <email address hidden>  Sun, 18 Oct 2015 16:51:41 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Xenial release universe perl

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhttp-async-perl_0.30-1.dsc 2.4 KiB 0bc3d03df2a8fa896094dd3cca82799f771f3318e5f4f5b1fb4ff77748cf6633
libhttp-async-perl_0.30.orig.tar.gz 23.9 KiB fe52382bc6e90e55899016ae065bbc7f483bea2d611353334d73f144f775843b
libhttp-async-perl_0.30-1.debian.tar.xz 3.0 KiB be0f578cf31097da67f7f1e6af33be0fb3b0f60ca05c024fe1a69abfd018bf5c

Available diffs

No changes file available.

Binary packages built by this source

libhttp-async-perl: module for parallel non-blocking processing of multiple HTTP requests

 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.