libfuture-perl 0.42-1 source package in Ubuntu

Changelog

libfuture-perl (0.42-1) unstable; urgency=medium

  * Import upstream version 0.42.
  * Declare compliance with Debian Policy 4.4.1.

 -- gregor herrmann <email address hidden>  Thu, 14 Nov 2019 19:51:20 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfuture-perl_0.42-1.dsc 2.4 KiB 0135fecfa59cb72cf11623ddb9ac3a08b9bd941f39d5f34663f6fc072efd5194
libfuture-perl_0.42.orig.tar.gz 91.5 KiB 18d4d6cde072740712eab0b5de94611358fe44f881cb77c095b817b933700140
libfuture-perl_0.42-1.debian.tar.xz 3.3 KiB 334761e2e051243921652b72238dbd697d37818415d5bf4a34fd5748c45cd531

Available diffs

No changes file available.

Binary packages built by this source

libfuture-perl: module for operations awaiting completion

 A Future object represents an operation that is currently in progress, or
 has recently completed. It can be used in a variety of ways to manage the
 flow of control, and data, through an asynchronous program.
 .
 Some futures represent a single operation and are explicitly marked as ready
 by calling the done or fail methods. These are called "leaf" futures here,
 and are returned by the new constructor.
 .
 Other futures represent a collection sub-tasks, and are implicitly marked as
 ready depending on the readiness of their component futures as required.
 These are called "dependent" futures here, and are returned by the various
 wait_* and need_* constructors.
 .
 It is intended that library functions that perform asynchronous operations
 would use Future objects to represent outstanding operations, and allow their
 calling programs to control or wait for these operations to complete. The
 implementation and the user of such an interface would typically make use of
 different methods on the class. The methods below are documented in two
 sections; those of interest to each side of the interface.