Created
September 14, 2009 14:43
poe session using moosex::poe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Foo::Session; | |
use strict; | |
use warnings; | |
use MooseX::POE; | |
sub START { | |
my $self = shift; | |
# ... | |
} | |
event event1 => sub { | |
my $self = shift; | |
#... | |
}; | |
# ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment