Interface SearchIndexWriter
-
- All Known Implementing Classes:
OpenSearchBulkIndexWriter
,OpenSearchIndexWriter
public interface SearchIndexWriter
A mean to write to or remove a document from a search index.- Since:
- 7.16
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(AtlassianDocument document)
void
delete(SearchQuery searchQuery)
void
deleteAll()
void
postOptimize()
void
preOptimize()
-
-
-
Method Detail
-
add
void add(AtlassianDocument document) throws IOException
- Throws:
IOException
-
delete
void delete(SearchQuery searchQuery) throws IOException
- Throws:
IOException
-
deleteAll
void deleteAll() throws IOException
- Throws:
IOException
-
preOptimize
void preOptimize() throws IOException
- Throws:
IOException
-
postOptimize
void postOptimize() throws IOException
- Throws:
IOException
-
-