You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yacy_search_server/source/de/anomic/plasma/crawler/plasmaCrawlWorker.java

21 lines
506 B

package de.anomic.plasma.crawler;
import java.io.IOException;
import de.anomic.plasma.plasmaCrawlLoaderMessage;
import de.anomic.plasma.plasmaHTCache;
public interface plasmaCrawlWorker {
public static final String threadBaseName = "CrawlerWorker";
public void reset();
public void execute();
public void execute(plasmaCrawlLoaderMessage theNewMsg);
public void init();
public void close();
public plasmaHTCache.Entry load() throws IOException;
}