libhttp-async-perl 0.33-2 source package in Ubuntu

Changelog

libhttp-async-perl (0.33-2) unstable; urgency=medium

  [ Alex Muntada ]
  * Remove inactive pkg-perl members from Uploaders.

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

 -- Jelmer Vernooij <email address hidden>  Tue, 14 Jun 2022 23:00:13 +0100

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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhttp-async-perl_0.33-2.dsc 2.3 KiB 999fb4c34b879da5ecdaf75fe77abc64b0dc9549795ece9d4f3e55b12ecf8902
libhttp-async-perl_0.33.orig.tar.gz 23.9 KiB 5edba1562645facc36dde6ab02013b9d0a9593232430ec98165cd72a4d1196d4
libhttp-async-perl_0.33-2.debian.tar.xz 3.5 KiB 9fe7813990cf6a423bdc8a517d501dd20b609062583a664fa50d5f39e76caf89

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.