|
NAMEGantry::State::Simple - A simple state machine for GantrySYNOPSISThis module implements a simple state machine to control the execution context within GantryXs handler() method.DESCRIPTIONWhen a request comes into Gantry a preXdetermined set of steps are executed. These preXdetermined steps can be termed "states", and the process can be called a "state machine". There are many ways to implement a "state machine", so this document will not get into the semantics of the term.What this module does, is allow plugins to issue a redirect and have them take effect immediately. The default behavior is to have the redirect happen after the controllers have finished processing. This is to allow a plugin to initialize properly. For example Gantry::Plugins::Session requires a redirect to /cookiecheck to see if the session cookie has been set. Under the default state handler, this redirect happens after the initial controller has finished processing. So a race condition happens. You can not manipulate a session until the cookie has been established which doesn't happen until after the initial controller executes. This problem goes away after the redirect. This module fixes the problem. CONFIGURATIONTo load a differant state machine you need to do the following:use MyApp qw{ XStateMachine=Simple };
SEE ALSOGantry Gantry::State::Default Gantry::State::Constants AUTHORKevin L. Esteb <kesteb@wsipc.org>COPYRIGHT AND LICENSECopyright (C) 2008 Kevin L. EstebThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available. POD ERRORSHey! The above document had some coding errors, which are explained below:
Visit the GSP FreeBSD Man Page Interface. |