Package org.eclipse.help.search
Interface ISearchEngineResultCollector
-
public interface ISearchEngineResultCollectorA collector for the search hits (asynchronously) returned by the help search participants.This interface is intended to be implemented by clients and passed to the search engine instance.
- Since:
- 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(ISearchEngineResult searchResult)Accepts a new search result object.voidaccept(ISearchEngineResult[] searchResults)Accepts an array of new search results.voiderror(IStatus status)Notifies the collector that an error has occured in the search engine.
-
-
-
Method Detail
-
accept
void accept(ISearchEngineResult searchResult)
Accepts a new search result object.- Parameters:
searchResult- the new search result
-
accept
void accept(ISearchEngineResult[] searchResults)
Accepts an array of new search results.- Parameters:
searchResults- an array of search result objects
-
error
void error(IStatus status)
Notifies the collector that an error has occured in the search engine. The kinds of errors that are reported this way are not abnormal problems or internal errors. Unexpected problems should be left to the job manager to handle by throwing aCoreException. Use this method to report errors that are expected to occur from time to time (e.g., server down, server timeout, incorrect URL etc.).- Parameters:
status- the reported error status
-
-