All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.intelie.live.plugins.messenger.search.SearchableIndexWriter Maven / Gradle / Ivy

The newest version!
package net.intelie.live.plugins.messenger.search;

import org.apache.lucene.index.IndexableField;
import org.apache.lucene.index.Term;

public interface SearchableIndexWriter {

    void updateDocument(Term term, Iterable doc) throws Exception;

    boolean deleteDocument(Term term) throws Exception;

    void flushBuffer() throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy