public static interface ChangeQueue.CrawlActivityLogger
| Modifier and Type | Method and Description |
|---|---|
void |
gotChangedDocument(java.lang.String documentId)
To record that crawling thread just received a document for
which either the content or the meta data or both have changed since the
last scan.
|
void |
gotDeletedDocument(java.lang.String documentId)
To record that crawling thread just found out that the
previously existing document got deleted and is no longer present.
|
void |
gotNewDocument(java.lang.String documentId)
To record that crawling thread just received a new document
which was not present in the last scan.
|
void |
scanBeginAt(java.sql.Timestamp time)
Records the start time of the scan.
|
void |
scanEndAt(java.sql.Timestamp time)
Records the end time of the scan.
|
void scanBeginAt(java.sql.Timestamp time)
time - timestamp of the start timevoid scanEndAt(java.sql.Timestamp time)
time - timestamp of the end timevoid gotChangedDocument(java.lang.String documentId)
documentId - Id for the changed documentvoid gotNewDocument(java.lang.String documentId)
documentId - Id of the newly added documentvoid gotDeletedDocument(java.lang.String documentId)
documentId - id of the deleted document