Greetings Monks,
I have a little difficulty in understanding one statement in which two functions called.
139 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();
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.
Thanks
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|