Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Future-0.50-1.5 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: perl-Future Distribution: openSUSE Tumbleweed
Version: 0.50 Vendor: openSUSE
Release: 1.5 Build date: Sat Mar 18 04:06:18 2023
Group: Unspecified Build host: reproducible
Size: 242450 Source RPM: perl-Future-0.50-1.5.src.rpm
Packager: https://bugs.opensuse.org
Url: https://metacpan.org/release/Future
Summary: Represent an operation 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 of sub-tasks, and are implicitly
marked as ready depending on the readiness of their component futures as
required. These are called "convergent" futures here as they converge
control and data-flow back into one place. These are the ones 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.

It should be noted however, that this module does not in any way provide an
actual mechanism for performing this asynchronous activity; it merely
provides a way to create objects that can be used for control and data flow
around those operations. It allows such code to be written in a neater,
forward-reading manner, and simplifies many common patterns that are often
involved in such situations.

See also Future::Utils which contains useful loop-constructing functions,
to run a future-returning function repeatedly in a loop.

Unless otherwise noted, the following methods require at least version
_0.08_.

Provides

Requires

License

Artistic-1.0 OR GPL-1.0-or-later

Changelog

* Sat Mar 18 2023 Tina Müller <timueller+perl@suse.de>
  - updated to 0.50
    see /usr/share/doc/packages/perl-Future/Changes
    0.50    2023-03-17
      [CHANGES]
    * Swap all unit tests from `Test::More` to `Test2::V0`
    * Avoids test_requires on `Test::Refcount` or `Test::Fatal`
      [BUGFIXES]
    * Fix documentation minisynopsis on `->udata`
    * Set `@CARP_NOT` so that `AWAIT_GET` rethrow appears to come from
      the right location (RT145249)
* Tue Oct 18 2022 Tina Müller <timueller+perl@suse.de>
  - updated to 0.49
    see /usr/share/doc/packages/perl-Future/Changes
    0.49    2022-10-17
      [CHANGES]
    * Big reshuffle to move most code into Future/PP.pm in order to
      support an optional Future-XS distribution too
    * Attempt to load Future::XS by preference if it is available
    * Additional unit tests for cornercases of XS implementation
    * Remember to provide the AWAIT_WAIT API method
    * Migrated Future::Queue out into its own distribution
      [BUGFIXES]
    * Bugfixes and unit tests for convergents on pre-cancelled futures
      (RT144459)
* Thu Jan 27 2022 Tina Müller <timueller+perl@suse.de>
  - updated to 0.48
    see /usr/share/doc/packages/perl-Future/Changes
    0.48    2022-01-26
      [CHANGES]
    * Implement the new AWAIT_ON_CANCEL API shape for Future::AsyncAwait
      [BUGFIXES]
    * Make sure to set rtime for immediate futures (RT134620)
* Sat Jan 02 2021 Tina Müller <timueller+perl@suse.de>
  - updated to 0.47
    see /usr/share/doc/packages/perl-Future/Changes
    0.47    2021-01-01
      [BUGFIXES]
    * Don't weaken() the waiting future in Future::Mutex as that causes
      it to be dropped in some situations
* Tue Oct 20 2020 Tina Müller <timueller+perl@suse.de>
  - updated to 0.46
    see /usr/share/doc/packages/perl-Future/Changes
    0.46    2020-10-19
      [CHANGES]
    * Provide AWAIT_CHAIN_CANCEL named method for compatibility with
      upcoming Future::AsyncAwait::Awaitable method rename
      [BUGFIXES]
    * Ensure that Future::Mutex returns proper cloned future instances
      when waiting (RT133563)
* Thu Apr 23 2020 <timueller+perl@suse.de>
  - updated to 0.45
    see /usr/share/doc/packages/perl-Future/Changes
    0.45    2020-04-22
      [CHANGES]
    * API changes to make duck-typing closer to Promises/A+ et.al:
      + Allow sequencing methods to yield non-Future results; upgrade
      them to being Future-wrapped
      + Add ->resolve and ->reject as aliases of ->done and ->fail
    * Recognise PERL_FUTURE_STRICT environment variable to restore
      previous sequencing method behaviour
      [BUGFIXES]
    * ->without_cancel still needs to cancel result if caller is
      cancelled
    * Ensure all Future::AsyncAwait interop methods properly respect
      subclassing
* Wed Mar 25 2020 <timueller+perl@suse.de>
  - updated to 0.44
    see /usr/share/doc/packages/perl-Future/Changes
    0.44    2020-03-25
      [CHANGES]
    * Added ->result; use that in unit tests and docs where appropriate
    * Slight performance boost in internals by direct field access rather
      than accessor methods
    * Document ->await properly; make it wait until ready
    * Discourage ->block_until_ready
* Wed Jan 08 2020 <timueller+perl@suse.de>
  - updated to 0.43
    see /usr/share/doc/packages/perl-Future/Changes
    0.43    2020-01-07
      [CHANGES]
    * Implement the Future::AsyncAwait::Awaitable API methods directly
* Thu Nov 14 2019 <timueller+perl@suse.de>
  - updated to 0.42
    see /usr/share/doc/packages/perl-Future/Changes
    0.42    2019-11-12
      [CHANGES]
    * Added Future::Queue
      [BUGFIXES]
    * Remove already-completed futures from the on_cancel chain of others
      to avoid the list growing arbitrarily large in some situations; e.g
      easily provoked by long loops in Future::AsyncAwait
* Fri Jun 14 2019 Stephan Kulow <coolo@suse.com>
  - updated to 0.41
    see /usr/share/doc/packages/perl-Future/Changes
    0.41    2019-06-13
      [CHANGES]
    * Added Future::Exception->throw

Files

/usr/lib/perl5/vendor_perl/5.38.2/Future
/usr/lib/perl5/vendor_perl/5.38.2/Future.pm
/usr/lib/perl5/vendor_perl/5.38.2/Future/Exception.pm
/usr/lib/perl5/vendor_perl/5.38.2/Future/Mutex.pm
/usr/lib/perl5/vendor_perl/5.38.2/Future/PP.pm
/usr/lib/perl5/vendor_perl/5.38.2/Future/Phrasebook.pod
/usr/lib/perl5/vendor_perl/5.38.2/Future/Utils.pm
/usr/lib/perl5/vendor_perl/5.38.2/Test
/usr/lib/perl5/vendor_perl/5.38.2/Test/Future
/usr/lib/perl5/vendor_perl/5.38.2/Test/Future.pm
/usr/lib/perl5/vendor_perl/5.38.2/Test/Future/Deferred.pm
/usr/share/doc/packages/perl-Future
/usr/share/doc/packages/perl-Future/Changes
/usr/share/doc/packages/perl-Future/README
/usr/share/licenses/perl-Future
/usr/share/licenses/perl-Future/LICENSE
/usr/share/man/man3/Future.3pm.gz
/usr/share/man/man3/Future::Exception.3pm.gz
/usr/share/man/man3/Future::Mutex.3pm.gz
/usr/share/man/man3/Future::Phrasebook.3pm.gz
/usr/share/man/man3/Future::Utils.3pm.gz
/usr/share/man/man3/Test::Future.3pm.gz
/usr/share/man/man3/Test::Future::Deferred.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed May 1 23:23:10 2024