On Tue, Nov 12, 2002 at 05:46:07PM -0600, Garrett Goebel wrote:
> 
> Okay... attached you will find POE::Session::SubVar (for lack of a better
> name). There's a script called demo.pl which should be self-explanatory. And
> from the scanty documentation, it'll allow you to do things like:
> 
>   use POE::Kernel;
>   use POE::Session::SubVar;
> 
>   POE::Session->new(
>       inline_state => sub {
>           my (@args) = @_;
>           heap->{args} = \@args;
>           kernel->yield('object_state');
>       },
>       $object => ['object_state'],
>   );
>   
>   sub object_state {
>       my ($self, @args) = @_;
>       ...
>   }
> 
> Rocco, perhaps if you're agreeable, you could put it (or something similar
> to it) out at http://poe.perl.org/poedown and update the info at
> http://poe.perl.org/?POE_RFCs/Lexical_state_parameters to point to it?

Consider it done, which it is.

-- Rocco Caputo - [EMAIL PROTECTED] - http://poe.perl.org/

Reply via email to