--- AnyEvent/lib/AnyEvent.pm 2007/03/07 17:37:24 1.23 +++ AnyEvent/lib/AnyEvent.pm 2007/10/31 14:17:43 1.29 @@ -197,8 +197,9 @@ The known classes so far are: - AnyEvent::Impl::Coro based on Coro::Event, best choise. - AnyEvent::Impl::Event based on Event, also best choice :) + EV::AnyEvent based on EV (an interface to libev, 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. AnyEvent::Impl::Tk based on Tk, very bad choice. AnyEvent::Impl::Perl pure-perl implementation, inefficient. @@ -247,9 +248,10 @@ no warnings; use strict; + use Carp; -our $VERSION = '2.52'; +our $VERSION = '2.55'; our $MODEL; our $AUTOLOAD; @@ -261,6 +263,7 @@ my @models = ( [Coro::Event:: => AnyEvent::Impl::Coro::], + [EV:: => EV::AnyEvent::], [Event:: => AnyEvent::Impl::Event::], [Glib:: => AnyEvent::Impl::Glib::], [Tk:: => AnyEvent::Impl::Tk::], @@ -441,7 +444,7 @@ I also cheats a bit by not providing blocking access to condition variables: code blocking while waiting for a condition will C. This still works with most modules/usages, and blocking calls must -not be in an interactive appliation, so it makes sense. +not be in an interactive application, so it makes sense. =head1 ENVIRONMENT VARIABLES