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

Changelog

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

  [ Salvatore Bonaccorso ]
  * debian/control: Use HTTPS transport protocol for Vcs-Git URI

  [ gregor herrmann ]
  * debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
  * Remove Jonathan Yu from Uploaders. Thanks for your work!

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

  [ Debian Janitor ]
  * Bump debhelper from deprecated 8 to 12.
  * Set debhelper-compat version in Build-Depends.

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

 -- Jelmer Vernooij <email address hidden>  Wed, 08 Jun 2022 17:26:10 +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
libasync-mergepoint-perl_0.04-3.dsc 2.1 KiB 14732003cbdb5be3b78740b1b3ca6039fb94c13f0eb230b4e77b4ebb763ca9c6
libasync-mergepoint-perl_0.04.orig.tar.gz 14.7 KiB 128919127fca8787498f281292ced8da385750508803916b3686b64224b6c7a4
libasync-mergepoint-perl_0.04-3.debian.tar.xz 2.7 KiB 4d22d71d90c56a9c9e6f865ea4d1123e3226e1c4db51fdc0d596e0e20018ced9

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.