|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface MassIndexerProgressMonitor
As a MassIndexer can take some time to finish it's job, a MassIndexerProgressMonitor can be defined in the configuration property hibernate.search.worker.indexing.monitor implementing this interface to track indexing performance. Implementors must: be threadsafe have a no-arg constructor.
| Method Summary | |
|---|---|
void |
addToTotalCount(long count)
The total count of entities to be indexed is added here; It could be called more than once, the implementation should add them up. |
void |
documentsAdded(long increment)
The number of documents sent to the backend; This is called several times during the indexing process. |
void |
documentsBuilt(int number)
The number of Documents built; This is called several times and concurrently during the indexing process. |
void |
entitiesLoaded(int size)
The number of entities loaded from database; This is called several times and concurrently during the indexing process. |
| Method Detail |
|---|
void documentsAdded(long increment)
increment - void documentsBuilt(int number)
number - void entitiesLoaded(int size)
size - void addToTotalCount(long count)
count -
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||