--- AnyEvent/lib/AnyEvent.pm 2007/11/03 09:29:51 1.32 +++ AnyEvent/lib/AnyEvent.pm 2007/11/14 23:24:16 1.35 @@ -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::], @@ -305,7 +307,7 @@ } $MODEL - or die "No event module selected for AnyEvent and autodetect failed. Install any one of these modules: Event (or Coro+Event), Glib or Tk."; + or die "No event module selected for AnyEvent and autodetect failed. Install any one of these modules: EV (or Coro+EV), Event (or Coro+Event), Glib or Tk."; } unshift @ISA, $MODEL;