use of net.jforum.exceptions.SearchException in project jforum2 by rafaelsteil.
the class LuceneIndexer method batchCreate.
public void batchCreate(Post post) {
synchronized (MUTEX) {
try {
Document document = this.createDocument(post);
this.ramWriter.addDocument(document);
this.flushRAMDirectoryIfNecessary();
} catch (IOException e) {
throw new SearchException(e);
}
}
}
Aggregations