websphinx
Class CrawlAdapter

java.lang.Object
  |
  +--websphinx.CrawlAdapter
All Implemented Interfaces:
CrawlListener

public class CrawlAdapter
extends java.lang.Object
implements CrawlListener

Adapter for CrawlListener interface.


Constructor Summary
CrawlAdapter()
           
 
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.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

CrawlAdapter

public CrawlAdapter()
Method Detail

started

public void started(CrawlEvent event)
Notify that the crawler started.
Specified by:
started in interface CrawlListener

stopped

public void stopped(CrawlEvent event)
Notify that the crawler ran out of links to crawl.
Specified by:
stopped in interface CrawlListener

cleared

public void cleared(CrawlEvent event)
Notify that the crawler's state was cleared.
Specified by:
cleared in interface CrawlListener

timedOut

public void timedOut(CrawlEvent event)
Notify that the crawler timed out.
Specified by:
timedOut in interface CrawlListener

paused

public void paused(CrawlEvent event)
Notify that the crawler was paused.
Specified by:
paused in interface CrawlListener