Re: undef for @_ arglist when starting a poe session
Josh803316 <[email protected]>
| Newsgroups | gmane.comp.lang.perl.poe |
|---|---|
| Message-ID | <[email protected]> |
Yes, those args are being used. With David Davis' help I realized that the
problem was as follows:
$obj is a poe component generic object and I hadn't added the use POE;
inside the module that was being wrapped. There was no error or warning
which was odd, but it looks like things are working now after I added
my $obj = POE::Component::Generic->spawn(
package => 'Wrapped::Module', # I didn't add "use POE;" inside
this module which seems to have caused the problem
);
On Sat, Jul 11, 2009 at 10:08 AM, Phil Whelan <[email protected]> wrote:
> Hi Josh,
>
> On Fri, Jul 10, 2009 at 4:58 PM, Josh803316<[email protected]> wrote:
> > args => [ $obj, $queue_manager ]
>
> Are these being used / created?
>
> Phil
>