Interface IndexingContext
- 
public interface IndexingContext 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommitInfogetCommitInfo()Commit info associated with commit as part of which IndexEditor is being invokedjava.lang.StringgetIndexPath()Path of the index definition in the repositoryvoidindexUpdateFailed(java.lang.Exception e)Invoked by IndexEditor to indicate that update of index has failedbooleanisAsync()Flag indicating that indexed is being done asynchronouslybooleanisReindexing()Flag indicating that index is being reindexvoidregisterIndexCommitCallback(IndexCommitCallback callback)registersIndexCommitCallbackinstance which can then be notified of how indexing commit progresses. 
 - 
 
- 
- 
Method Detail
- 
getIndexPath
java.lang.String getIndexPath()
Path of the index definition in the repository- Returns:
 - index path in the repository
 
 
- 
getCommitInfo
CommitInfo getCommitInfo()
Commit info associated with commit as part of which IndexEditor is being invoked 
- 
isReindexing
boolean isReindexing()
Flag indicating that index is being reindex 
- 
isAsync
boolean isAsync()
Flag indicating that indexed is being done asynchronously 
- 
indexUpdateFailed
void indexUpdateFailed(java.lang.Exception e)
Invoked by IndexEditor to indicate that update of index has failed- Parameters:
 e- exception stack for failed updated
 
- 
registerIndexCommitCallback
void registerIndexCommitCallback(IndexCommitCallback callback)
registersIndexCommitCallbackinstance which can then be notified of how indexing commit progresses.- Parameters:
 callback-
 
 - 
 
 -