Skip to content

Instantly share code, notes, and snippets.

@jquelin
Created September 14, 2009 14:43
poe session using moosex::poe
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