All Packages Class Hierarchy This Package Previous Next Index
Interface websphinx.CrawlListener
- public interface CrawlListener
Crawl event listener.
-
cleared(CrawlEvent)
- Notify that the crawler's state was cleared.
-
paused(CrawlEvent)
- Notify that the crawler was paused.
-
started(CrawlEvent)
- Notify that the crawler started.
-
stopped(CrawlEvent)
- Notify that the crawler ran out of links to crawl
-
timedOut(CrawlEvent)
- Notify that the crawler timed out.
started
public abstract void started(CrawlEvent event)
- Notify that the crawler started.
stopped
public abstract void stopped(CrawlEvent event)
- Notify that the crawler ran out of links to crawl
cleared
public abstract void cleared(CrawlEvent event)
- Notify that the crawler's state was cleared.
timedOut
public abstract void timedOut(CrawlEvent event)
- Notify that the crawler timed out.
paused
public abstract void paused(CrawlEvent event)
- Notify that the crawler was paused.
All Packages Class Hierarchy This Package Previous Next Index