websphinx
Interface CrawlListener

All Known Implementing Classes:
ConcatAction, CrawlAdapter, EventLog, ExtractAction, MirrorAction, Statistics, WebGraph, WebOutline, Workbench

public interface CrawlListener

Crawl event listener.


Method Summary
 void cleared(CrawlEvent event)
          Notify that the crawler's state was cleared.
 void paused(CrawlEvent event)
          Notify that the crawler was paused.
 void started(CrawlEvent event)
          Notify that the crawler started.
 void stopped(CrawlEvent event)
          Notify that the crawler ran out of links to crawl
 void timedOut(CrawlEvent event)
          Notify that the crawler timed out.
 

Method Detail

started

public void started(CrawlEvent event)
Notify that the crawler started.


stopped

public void stopped(CrawlEvent event)
Notify that the crawler ran out of links to crawl


cleared

public void cleared(CrawlEvent event)
Notify that the crawler's state was cleared.


timedOut

public void timedOut(CrawlEvent event)
Notify that the crawler timed out.


paused

public void paused(CrawlEvent event)
Notify that the crawler was paused.