libfuture-perl 0.19-1 source package in Ubuntu

Changelog

libfuture-perl (0.19-1) unstable; urgency=low


  * New upstream release.
  * Update years of packaging copyright.

 -- gregor herrmann <email address hidden>  Wed, 02 Oct 2013 23:21:49 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libfuture-perl_0.19-1.dsc 2.1 KiB fe82a2d3fa66a09acdd189923ee01c40f1eb49eb70289c8473b5813f9dcafe4f
libfuture-perl_0.19.orig.tar.gz 55.9 KiB 1cf70b690faa623ad854ec8ec32ef07dc187a57061ac95ca4679f04f1216e84e
libfuture-perl_0.19-1.debian.tar.gz 2.0 KiB 87f3b6866a55eeb8da250fd5ef137ce7d08b7cfbe80c3d734f083fff67a8c369

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.