=head1 NAME AnyEvent::Impl::CoroEV - AnyEvent adaptor for Coro::EV, EV =head1 SYNOPSIS use AnyEvent; use EV; # this module gets loaded automatically as required =head1 DESCRIPTION This module provides transparent support for AnyEvent. You don't have to do anything to make Coro::EV work with AnyEvent except by loading Coro::EV before creating the first AnyEvent watcher. Unlike all other event models, Coro::EV models allow recursion in condvars (see L, C<< $condvar->wait >>), I. See L and L for more details about L integration. =cut package AnyEvent::Impl::CoroEV; use base qw(AnyEvent::Impl::Coro AnyEvent::Impl::EV); use strict; no warnings; use Coro::EV (); 1; =head1 SEE ALSO L, L, L. =head1 AUTHOR Marc Lehmann http://home.schmorp.de/ =cut