Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
support for subprocesses is no longer experimental
  • Loading branch information
kraih committed Dec 18, 2016
1 parent e1da866 commit 69d47e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Changes
@@ -1,7 +1,9 @@

7.12 2016-12-17
7.12 2016-12-18
- Added button_to and csrf_button_to helpers to
Mojolicious::Plugin::TagHelpers.
- Removed experimental status from Mojo::IOLoop::Subprocess.
- Removed experimental status from subprocess method in Mojo::IOLoop.

7.11 2016-11-30
- Added EXPERIMENTAL close_idle_connections method to Mojo::Server::Daemon.
Expand Down
3 changes: 1 addition & 2 deletions lib/Mojo/IOLoop.pm
Expand Up @@ -613,8 +613,7 @@ Get L<Mojo::IOLoop::Stream> object for id or turn object into a connection.
Build L<Mojo::IOLoop::Subprocess> object to perform computationally expensive
operations in subprocesses, without blocking the event loop. Callbacks will be
passed along to L<Mojo::IOLoop::Subprocess/"run">. Note that this method is
EXPERIMENTAL and might change without warning!
passed along to L<Mojo::IOLoop::Subprocess/"run">.
# Operation that would block the event loop for 5 seconds
Mojo::IOLoop->subprocess(
Expand Down
3 changes: 1 addition & 2 deletions lib/Mojo/IOLoop/Subprocess.pm
Expand Up @@ -81,8 +81,7 @@ Mojo::IOLoop::Subprocess - Subprocesses
=head1 DESCRIPTION
L<Mojo::IOLoop::Subprocess> allows L<Mojo::IOLoop> to perform computationally
expensive operations in subprocesses, without blocking the event loop. Note that
this module is EXPERIMENTAL and might change without warning!
expensive operations in subprocesses, without blocking the event loop.
=head1 ATTRIBUTES
Expand Down

0 comments on commit 69d47e8

Please sign in to comment.