in reply to Re: Storing object references during creation of ->new object
in thread Storing object references during creation of ->new object

Thank you for the quick response. When I drop the \ I get:
Can't call method "logout" on unblessed reference

Replies are listed 'Best First'.
Re^3: Storing object references during creation of ->new object
by perldarren (Novice) on Aug 05, 2012 at 15:43 UTC
    Here is the entire sub new:
    sub new { my $class = shift; my %options = @_; my $self = { _serial => $options{'serial'}, _log => $options{'log'}, _horcm => $options{'horcm'}, _does_get_cmd_status => $options{'does_get_cmd_status'}, }; bless $self, $class; $array_objects{$options{'serial'}} = $self; return $self; }

      Hold on ! tobyink, you're right - my issue is solved.

      Many thanks!