websphinx
Class CrawlEvent
java.lang.Object
|
+--websphinx.CrawlEvent
- public class CrawlEvent
- extends java.lang.Object
Crawling event. CrawlEvents are broadcast when the
crawler starts, stops, or clears its state.
Field Summary |
static int |
CLEARED
Crawler's state was cleared. |
private Crawler |
crawler
|
private int |
id
|
static int |
PAUSED
Crawler was paused. |
static int |
STARTED
Crawler started. |
static int |
STOPPED
Crawler ran out of links to crawl |
static int |
TIMED_OUT
Crawler timeout expired. |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait |
crawler
private Crawler crawler
id
private int id
STARTED
public static final int STARTED
- Crawler started.
STOPPED
public static final int STOPPED
- Crawler ran out of links to crawl
CLEARED
public static final int CLEARED
- Crawler's state was cleared.
TIMED_OUT
public static final int TIMED_OUT
- Crawler timeout expired.
PAUSED
public static final int PAUSED
- Crawler was paused.
CrawlEvent
public CrawlEvent(Crawler crawler,
int id)
- Make a CrawlEvent.
- Parameters:
crawler
- Crawler that generated this eventid
- event id (one of STARTED, STOPPED, etc.)
getCrawler
public Crawler getCrawler()
- Get crawler that generated the event
- Returns:
- crawler
getID
public int getID()
- Get event id.
- Returns:
- one of STARTED, STOPPED, CLEARED, TIMED_OUT,
or PAUSED.