NAME
Promises::Deferred::EV - An implementation of Promises in Perl
VERSION
version 1.04
SYNOPSIS
use Promises backend => ['EV'], qw[ deferred collect ];
# ... everything else is the same
DESCRIPTION
The "Promise/A+" spec strongly suggests that the callbacks given to then
should be run asynchronously (meaning in the next turn of the event loop), this module provides support for doing so using the EV module.
Module authors should not care which event loop will be used but instead should just the Promises module directly:
package MyClass;
use Promises qw(deferred collect);
End users of the module can specify which backend to use at the start of the application:
use Promises -backend => ['EV'];
use MyClass;
AUTHOR
Stevan Little <stevan.little@iinteractive.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2020, 2019, 2017, 2014, 2012 by Infinity Interactive, Inc.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.