Query: moosex::poe::sweetargs
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MooseX::POE::SweetArgs(3pm) User Contributed Perl Documentation MooseX::POE::SweetArgs(3pm)NAMEMooseX::POE::SweetArgs - sugar around MooseX::POE event argumentsVERSIONversion 0.215SYNOPSISpackage Thing; use MooseX::POE::SweetArgs; # declare events like usual event on_success => sub { # unpack args like a Perl sub, not a POE event my ($self, $foo, $bar) = @_; ... POE::Kernel->yield('foo'); ... };DESCRIPTIONNormally, when using MooseX::POE, subs declared as events need to use POE macros for unpacking @_, e.g.: my ($self, $foo, $bar) = @_[OBJECT, ARG0..$#_]; Using MooseX::POE::SweetArgs as a metaclass lets you avoid this, and just use @_ as normal: my ($self, $foo, $bar) = @_; Since the POE kernel is a singleton, you can access it using class methods, as shown in the synopsis. In all other respects, this behaves exactly like MooseX::POEAUTHORSo Chris Prather <chris@prather.org> o Ash Berlin <ash@cpan.org> o Chris Williams <chris@bingosnet.co.uk> o Yuval (nothingmuch) Kogman o Torsten Raudssus <torsten@raudssus.de> <http://www.raudssus.de/>COPYRIGHT AND LICENSEThis software is copyright (c) 2010 by Chris Prather, Ash Berlin, Chris Williams, Yuval Kogman, Torsten Raudssus. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-04-25 MooseX::POE::SweetArgs(3pm)
Similar Topics in the Unix Linux Community |
---|
PPE/POE problems on AIX 5.2 on p690 systems |
Accumulated value |
Running unix commands through perl |
If condition issue |
Bash to Ash, errors and adjustments |