Can anyone explain how variable scoping works within a POE session? What is the proper way to pass state within the session, without impacting other sessions?

Thanks Josh

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Scoping is unaffected by POE.

You can use POE's heap (accessible through $_[HEAP]) to pass data around between your various handlers.

According to the docs, the heap is distinct between sessions by default, but it is possible to override this so that different sessions share a heap.

sub my_state_handler {
    $_[HEAP]{some_data} = 'foo';
    $_[KERNEL]->yield('another_handler');
}

sub another_handler {
    print $_[HEAP]{some_data}, "\n"; # prints "foo\n"
}
link|improve this answer
When creating a session, a new hash is used for the heap, as you said. One can specify the heap manually when creating a session: search.cpan.org/perldoc?POE::Session#heap_=>_ANYTHING You could use an existing hash for session's heap, or an array, etc. – Hinrik Apr 16 '10 at 12:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.