--- AnyEvent/lib/AnyEvent.pm 2007/11/03 09:29:51 1.32 +++ AnyEvent/lib/AnyEvent.pm 2007/11/09 19:37:05 1.34 @@ -199,7 +199,8 @@ The known classes so far are: - EV::AnyEvent based on EV (an interface to libev, best choice) + AnyEvent::Impl::CoroEV based on Coro::EV, best choice. + AnyEvent::Impl::EV based on EV (an interface to libev, also best choice). AnyEvent::Impl::Coro based on Coro::Event, second best choice. AnyEvent::Impl::Event based on Event, also second best choice :) AnyEvent::Impl::Glib based on Glib, second-best choice. @@ -253,7 +254,7 @@ use Carp; -our $VERSION = '2.55'; +our $VERSION = '2.6'; our $MODEL; our $AUTOLOAD; @@ -264,8 +265,9 @@ our @REGISTRY; my @models = ( + [Coro::EV:: => AnyEvent::Impl::CoroEV::], + [EV:: => AnyEvent::Impl::EV::], [Coro::Event:: => AnyEvent::Impl::Coro::], - [EV:: => EV::AnyEvent::], [Event:: => AnyEvent::Impl::Event::], [Glib:: => AnyEvent::Impl::Glib::], [Tk:: => AnyEvent::Impl::Tk::],