libfuture-perl 0.20-1 source package in Ubuntu

Changelog

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


  * New upstream release.
  * Declare compliance with Debian Policy 3.9.5.

 -- gregor herrmann <email address hidden>  Wed, 25 Dec 2013 16:14:16 +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

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libfuture-perl_0.20-1.dsc 2.1 KiB e04e443ad336711ea9986070cae9a17e875a38ddc35a8508ddb06b41fb3842dc
libfuture-perl_0.20.orig.tar.gz 56.1 KiB f1c07b4cbf3a0ac1713916b8e5f0b6d9cb869394a2531d3335664dd931d4a84f
libfuture-perl_0.20-1.debian.tar.gz 2.1 KiB d1f39aa3eb5b7f56f6d15debbb9f9ed83fea0e11624ab992f8c8123ca83132d0

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 asynchonous 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.