libfuture-perl 0.33-1 source package in Ubuntu

Changelog

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

  * Team upload.
  * Import upstream version 0.33
  * Bump debhelper compatibility level to 9
  * Update year of upstream copyright

 -- Lucas Kanashiro <email address hidden>  Tue, 22 Sep 2015 14:44:48 -0300

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
Xenial release universe misc

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfuture-perl_0.33-1.dsc 2.2 KiB be1b01709f7e8a7f8304eee63365509a9a7fe54ba02bb2946eea10c0283ca33d
libfuture-perl_0.33.orig.tar.gz 81.4 KiB 2fa237430b86cdc3561356e643fb1d09199f2335c6e98210116c7d944b5dd846
libfuture-perl_0.33-1.debian.tar.xz 2.8 KiB c82f257190d407d3dee0ef72ef990ec4ef3b5f00e7ec7fb07412491729fdb4ee

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.