libasync-mergepoint-perl 0.04-4 source package in Ubuntu

Changelog

libasync-mergepoint-perl (0.04-4) unstable; urgency=medium

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

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 15:43:01 +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
libasync-mergepoint-perl_0.04-4.dsc 2.1 KiB ad10093642d8c80e8d8f17f2b7ee3890b7bf96fd315d33682362b4a040281fda
libasync-mergepoint-perl_0.04.orig.tar.gz 14.7 KiB 128919127fca8787498f281292ced8da385750508803916b3686b64224b6c7a4
libasync-mergepoint-perl_0.04-4.debian.tar.xz 2.8 KiB 51bfedd1b2497b8da34734bdae39feb07b899681ce0ebe0c3fc5c26a09b13664

Available diffs

No changes file available.

Binary packages built by this source

libasync-mergepoint-perl: Perl module to resynchronize multiple control flows

 Async::Mergepoint is a module designed to provide a way to resynchronize
 multiple parallel control flows. Often in program logic, multiple different
 steps need to be taken that are independent of each other, but their total
 result is needed before the next step can be taken. In synchronous code, the
 usual approach is to do them sequentially.
 .
 An asynchronous or event-based program could do this, but if each step
 involves some IO idle time, better overall performance can often be gained by
 running the steps in parallel. A Async::MergePoint object can then be used to
 wait for all of the steps to complete, before passing the combined result of
 each step on to the next stage.