akagrawal3 has asked for the wisdom of the Perl Monks concerning the following question:
The statement my $logviewer = CCI::LogViewer->new( creates an object in user-defined package LogViewer.pm which is in CCI folder. This package has several functions of which get_log_records and XML_file are two of them. Now after the execution of first statement my $logviewer will be pointing to LogViewer.pm package. So will $logviewer->get_log_records()->XML_file(); just call both the functions or is there any other scenario I am failing to understand. Your help in this regard will be highly appreciated. Thanks139 my $logviewer = CCI::LogViewer->new( 140 { request => $request, 141 start_timestamp => $start_date, 142 end_timestamp => $end_date, 143 filter_string => $filter, 144 lgp_object => 'shortMessage', 145 lgp_subtype => 'eventEndPoints', 146 limit => $limit, 147 sid => $request->get_args()->{'sid'}, 148 } 149 ); 150 $logviewer->get_log_records()->XML_file();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Calling multi functions in a single statement
by Eliya (Vicar) on Apr 19, 2012 at 12:54 UTC | |
by akagrawal3 (Beadle) on Apr 20, 2012 at 05:06 UTC | |
by JavaFan (Canon) on Apr 20, 2012 at 08:45 UTC | |
|
Re: Calling multi functions in a single statement
by JavaFan (Canon) on Apr 19, 2012 at 13:04 UTC | |
by akagrawal3 (Beadle) on Apr 20, 2012 at 05:22 UTC | |
|
Re: Calling multi functions in a single statement
by Anonymous Monk on Apr 19, 2012 at 12:58 UTC |