Just wanted to say thank you to everyone who reponded to my query of 22,
Jul, regarding perl objects. Your explanations and pointers to the
relevant manpages helped immensely.
Cheers!
Jon
--
Jon Earle
SAVE FARSCAPE http://www.savefarscape.com/
Vegetarian - an old Indian word meaning 'lousy hu
Jon Earle wrote:
> Hello,
>
> I'm a bit confused over something related to perl objects. I've
> included some snippets for reference, which are located below (I'll keep
> the relevant discussion here for clarity).
>
> A new QueuedMessage object is created with 3 parameters passed to the
> const
Hello John,
The point you are probably missing is that
$queued_message = new QueuedMessage($source_dir_name,
$source_id,
$data_dir_name);
is just another way of writing
$queued_message = QueuedMessage::new('QueuedMessage',
Hello,
I'm a bit confused over something related to perl objects. I've
included some snippets for reference, which are located below (I'll keep
the relevant discussion here for clarity).
A new QueuedMessage object is created with 3 parameters passed to the
constructor. The constructor removes t