Mercurial Hosting > luan
annotate src/goodjava/lucene/api/GoodIndexWriter.java @ 1548:736ec76bbf42
lucene log work
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Sun, 27 Sep 2020 22:07:18 -0600 |
| parents | 35601f15ecc3 |
| children | 41c32da4cbd1 |
| rev | line source |
|---|---|
| 1460 | 1 package goodjava.lucene.api; |
| 2 | |
| 3 import java.io.IOException; | |
| 1539 | 4 import org.apache.lucene.index.IndexWriter; |
| 1460 | 5 import org.apache.lucene.search.Query; |
| 6 | |
| 7 | |
| 1548 | 8 public interface GoodIndexWriter extends GoodWriter { |
| 1460 | 9 public void close() throws IOException; |
| 10 public void rollback() throws IOException; | |
| 11 public void reindexDocuments(String keyFieldName,Query query) throws IOException; | |
| 1539 | 12 public IndexWriter getLuceneIndexWriter(); |
| 1460 | 13 } |
