[Catalyst-commits] r7570 - in trunk/Catalyst-Engine-HTTP-POE: . lib/Catalyst/Engine/HTTP

andyg at dev.catalyst.perl.org andyg at dev.catalyst.perl.org
Sat Apr 5 16:15:38 BST 2008


Author: andyg
Date: 2008-04-05 16:15:38 +0100 (Sat, 05 Apr 2008)
New Revision: 7570

Modified:
   trunk/Catalyst-Engine-HTTP-POE/Changes
   trunk/Catalyst-Engine-HTTP-POE/README
   trunk/Catalyst-Engine-HTTP-POE/lib/Catalyst/Engine/HTTP/POE.pm
Log:
Deprecating HTTP::POE engine

Modified: trunk/Catalyst-Engine-HTTP-POE/Changes
===================================================================
--- trunk/Catalyst-Engine-HTTP-POE/Changes	2008-04-05 01:27:24 UTC (rev 7569)
+++ trunk/Catalyst-Engine-HTTP-POE/Changes	2008-04-05 15:15:38 UTC (rev 7570)
@@ -1,7 +1,7 @@
 This file documents the revision history for Catalyst::Engine::HTTP::POE.
 
-# XXX: remove experimental text before 0.07 release
-0.07
+0.07    2008-04-05 11:30:00
+        - Deprecated in favor of HTTP::Prefork.
         - Sending SIGHUP to the server will now cause it to restart.
         - Sending SIGTERM will now properly shut down the server.
         - Removed time prefix from warn calls.

Modified: trunk/Catalyst-Engine-HTTP-POE/README
===================================================================
--- trunk/Catalyst-Engine-HTTP-POE/README	2008-04-05 01:27:24 UTC (rev 7569)
+++ trunk/Catalyst-Engine-HTTP-POE/README	2008-04-05 15:15:38 UTC (rev 7570)
@@ -1,13 +1,17 @@
 NAME
     Catalyst::Engine::HTTP::POE - Single-threaded multi-tasking Catalyst
-    engine
+    engine (deprecated in favor of HTTP::Prefork)
 
 SYNOPIS
         CATALYST_ENGINE='HTTP::POE' script/yourapp_server.pl
-    
-        # Prefork 5 children
+        
+    # Prefork 5 children
         CATALYST_POE_MAX_PROC=6 CATALYST_ENGINE='HTTP::POE' script/yourapp_server.pl
 
+DEPRECATED
+    This engine has been deprecated. Please consider using
+    Catalyst::Engine::HTTP::Prefork instead.
+
 DESCRIPTION
     This engine allows Catalyst to process multiple requests in parallel
     within a single process. Much of the internal Catalyst flow now uses POE

Modified: trunk/Catalyst-Engine-HTTP-POE/lib/Catalyst/Engine/HTTP/POE.pm
===================================================================
--- trunk/Catalyst-Engine-HTTP-POE/lib/Catalyst/Engine/HTTP/POE.pm	2008-04-05 01:27:24 UTC (rev 7569)
+++ trunk/Catalyst-Engine-HTTP-POE/lib/Catalyst/Engine/HTTP/POE.pm	2008-04-05 15:15:38 UTC (rev 7570)
@@ -913,7 +913,7 @@
 
 =head1 NAME
 
-Catalyst::Engine::HTTP::POE - Single-threaded multi-tasking Catalyst engine
+Catalyst::Engine::HTTP::POE - Single-threaded multi-tasking Catalyst engine (deprecated in favor of HTTP::Prefork)
 
 =head1 SYNOPIS
 
@@ -922,6 +922,10 @@
     # Prefork 5 children
     CATALYST_POE_MAX_PROC=6 CATALYST_ENGINE='HTTP::POE' script/yourapp_server.pl
 
+=head1 DEPRECATED
+
+This engine has been deprecated.  Please consider using L<Catalyst::Engine::HTTP::Prefork> instead.
+
 =head1 DESCRIPTION
 
 This engine allows Catalyst to process multiple requests in parallel within a




More information about the Catalyst-commits mailing list