Skip to content

Commit

Permalink
removed experimental status from Mojo::Reactor and Mojo::Reactor::EV
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Mar 22, 2012
1 parent 0c7c3dc commit e07e3f0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 4 additions & 2 deletions Changes
Expand Up @@ -2,8 +2,10 @@ This file documents the revision history for Perl extension Mojolicious.

2.65 2012-03-22 00:00:00
- Added one_tick method to Mojo::Reactor and Mojo::Reactor::EV.
- Removed experimental status from max_accepts attribute in
Mojo::IOLoop.
- Removed experimental status from Mojo::Reactor.
- Removed experimental status from Mojo::Reactor::EV.
- Removed experimental status from max_accepts and reactor attributes
in Mojo::IOLoop.
- Updated jQuery to version 1.7.2.
- Improved documentation.
- Improved tests.
Expand Down
3 changes: 1 addition & 2 deletions lib/Mojo/IOLoop.pm
Expand Up @@ -401,8 +401,7 @@ connections.
$loop = $loop->reactor(Mojo::Reactor->new);
Low level event reactor, usually a L<Mojo::Reactor> or L<Mojo::Reactor::EV>
object. Note that this attribute is EXPERIMENTAL and might change without
warning!
object.
=head2 C<server_class>
Expand Down
3 changes: 2 additions & 1 deletion lib/Mojo/IOLoop/Stream.pm
Expand Up @@ -307,7 +307,8 @@ Get handle for stream.
my $success = $stream->is_readable;
Quick check if stream is readable, useful for identifying tainted sockets.
Quick non-blocking check if stream is readable, useful for identifying
tainted sockets.
=head2 C<is_writing>
Expand Down
11 changes: 5 additions & 6 deletions lib/Mojo/Reactor.pm
Expand Up @@ -164,8 +164,7 @@ Mojo::Reactor - Minimalistic low level event reactor
=head1 DESCRIPTION
L<Mojo::Reactor> is a minimalistic low level event reactor based on
L<IO::Poll> and the foundation of L<Mojo::IOLoop>. Note that this module is
EXPERIMENTAL and might change without warning!
L<IO::Poll> and the foundation of L<Mojo::IOLoop>.
# A new reactor implementation could look like this
package Mojo::Reactor::MyLoop;
Expand All @@ -185,8 +184,8 @@ EXPERIMENTAL and might change without warning!
1;
Exceptions in callbacks should be caught and emitted as C<error> events with
L<Mojo::EventEmitter/"emit">.
Exceptions in callbacks should be caught and emitted safely as C<error>
events with L<Mojo::EventEmitter/"emit_safe">.
=head1 EVENTS
Expand Down Expand Up @@ -242,8 +241,8 @@ readable or writable.
my $success = $reactor->is_readable($handle);
Quick check if a handle is readable, useful for identifying tainted
sockets.
Quick non-blocking check if a handle is readable, useful for identifying
tainted sockets.
=head2 C<is_running>
Expand Down
3 changes: 1 addition & 2 deletions lib/Mojo/Reactor/EV.pm
Expand Up @@ -88,8 +88,7 @@ Mojo::Reactor::EV - Minimalistic low level event reactor with libev support
=head1 DESCRIPTION
L<Mojo::Reactor::EV> is a minimalistic low level event reactor with C<libev>
support. Note that this module is EXPERIMENTAL and might change without
warning!
support.
=head1 EVENTS
Expand Down

0 comments on commit e07e3f0

Please sign in to comment.