[Catalyst-commits] r6433 -
trunk/Catalyst-Engine-Wx/lib/Catalyst/Engine
eriam at dev.catalyst.perl.org
eriam at dev.catalyst.perl.org
Sun May 27 12:56:27 GMT 2007
Author: eriam
Date: 2007-05-27 12:56:26 +0100 (Sun, 27 May 2007)
New Revision: 6433
Modified:
trunk/Catalyst-Engine-Wx/lib/Catalyst/Engine/Wx.pm
Log:
Updated POD.
Modified: trunk/Catalyst-Engine-Wx/lib/Catalyst/Engine/Wx.pm
===================================================================
--- trunk/Catalyst-Engine-Wx/lib/Catalyst/Engine/Wx.pm 2007-05-27 11:55:28 UTC (rev 6432)
+++ trunk/Catalyst-Engine-Wx/lib/Catalyst/Engine/Wx.pm 2007-05-27 11:56:26 UTC (rev 6433)
@@ -21,12 +21,6 @@
use base 'Catalyst::Engine';
use Errno 'EWOULDBLOCK';
-
-=head2 run
-
-Creates the Catalyst POE session that will receive and deals with events.
-
-=cut
sub run {
my ( $self, $class, $options ) = @_;
@@ -74,21 +68,11 @@
});
}
-=head2 EVENT_REQUEST
-
-Receive and event from the Wx views and send it in the Catalyst flow.
-
-=cut
sub EVENT_REQUEST {
my ($self, $kernel, $heap, $session, $request) = @_[OBJECT, KERNEL, HEAP, SESSION, ARG0];
$heap->{'class'}->handle_request($request);
}
-=head2 prepare
-
-Transform an event with parameters into a Catalyst request.
-
-=cut
sub prepare {
my ( $self, $c, $request ) = @_;
@@ -145,7 +129,23 @@
can access the stash and deals with controllers just like in any other
Catalyst application running a web engine.
+See the tests for more informations.
+The following methods are for internal use despite that these don't start
+with the classical underscore.
+
+=head2 run
+
+Creates the Catalyst POE session that will receive and deals with events.
+
+=head2 EVENT_REQUEST
+
+Receive and event from the Wx views and send it in the Catalyst flow.
+
+=head2 prepare
+
+Transform an event with parameters into a Catalyst request.
+
=head1 AUTHORS
Eriam Schaffter, C<eriam at cpan.org>
More information about the Catalyst-commits
mailing list