—package
Promise::ES6::AnyEvent;
use
strict;
use
warnings;
=encoding utf-8
=head1 NAME
Promise::ES6::AnyEvent - L<Promises/A+-compliant|https://github.com/promises-aplus/promises-spec> promises
=head1 DESCRIPTION
This subclass of L<Promise::ES6> incorporates L<AnyEvent> in order to
implement full Promises/A+ compliance. Specifically, this class defers
execution of resolve and reject callbacks to the end of the current event
loop iteration.
=head1 STATUS
This module is still in the “proof-of-concept” phase. There may be areas
of Promises/A+ nonconformance that haven’t surfaced yet. Please
L<file a bug report|https://github.com/FGasper/p5-Promise-ES6/issues>
if you find any problems.
=head1 SEE ALSO
This distribution includes L<Promise::ES6::IOAsync> for those who
prefer L<IO::Async>.
CPAN’s L<Promises>, L<AnyEvent::Promises>, and L<AnyEvent::XSPromises>
all provide functionality similar to this class’s.
=cut
#----------------------------------------------------------------------
use
AnyEvent ();
#----------------------------------------------------------------------
sub
_postpone {
# postpone()’s prototype needlessly rejects a plain scalar.
return
&AnyEvent::postpone
(
$_
[1] );
}
1;