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

Changelog

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

  * Team upload.
  * Import upstream version 0.33.

 -- gregor herrmann <email address hidden>  Sat, 21 Jan 2017 18:36:48 +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
Jammy release universe perl
Focal release universe perl
Bionic release universe perl

Builds

Zesty: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libhttp-async-perl_0.33-1.dsc 2.4 KiB d4e8815d06a0c0f1f52bee275d4867d59c316a8a7de9a8d93a1d2c8a3faa156c
libhttp-async-perl_0.33.orig.tar.gz 23.9 KiB 5edba1562645facc36dde6ab02013b9d0a9593232430ec98165cd72a4d1196d4
libhttp-async-perl_0.33-1.debian.tar.xz 3.4 KiB c4296f6894b404185a24272160814ecba00d59124a7836d841cff69afa920c8a

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.