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

Changelog

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

  [ Debian Janitor ]
  * Apply multi-arch hints. + libhttp-async-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Sat, 15 Oct 2022 19:50:57 +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
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhttp-async-perl_0.33-3.dsc 2.3 KiB c9e6bc3e863e115397155e901c248d6dad526c8797dd6b6192afd1762ab52bea
libhttp-async-perl_0.33.orig.tar.gz 23.9 KiB 5edba1562645facc36dde6ab02013b9d0a9593232430ec98165cd72a4d1196d4
libhttp-async-perl_0.33-3.debian.tar.xz 3.6 KiB 59442baa68bc7052b47206c46deb430dcd2bf168bc0a39fe24417487044edcba

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.