1 17 package org.alfresco.repo.search.impl.lucene.fts; 18 19 import org.alfresco.service.cmr.repository.StoreRef; 20 21 22 23 public interface FullTextSearchIndexer { 24 25 public abstract void requiresIndex(StoreRef storeRef); 26 27 public abstract void indexCompleted(StoreRef storeRef, int remaining, Exception e); 28 29 public abstract void pause() throws InterruptedException ; 30 31 public abstract void resume() throws InterruptedException ; 32 33 public abstract void index(); 34 35 } | Popular Tags |