Package com.day.crx.statistics.loader
Interface AccessLogLoader.ProgressListener
- Enclosing class:
AccessLogLoader
public static interface AccessLogLoader.ProgressListener
Simple interface to get notifications about the progress of reading the
access.log file.
-
Method Summary
Modifier and TypeMethodDescriptionvoidlineProcessed(int line, int queryCount, int resultCount, Entry entry) This method is called whenever a line from the access.log is processed.
-
Method Details
-
lineProcessed
This method is called whenever a line from the access.log is processed.- Parameters:
line- the number of lines parsed so far.queryCount- the number of queries loaded so far.resultCount- the number of results loaded so far.entry- the entry read from the log ornullif the line did not create an entry.
-