us.codecraft.webmagic.handler.SubPageProcessor Maven / Gradle / Ivy
package us.codecraft.webmagic.handler;
import us.codecraft.webmagic.Page;
/**
* @author [email protected]
*/
public interface SubPageProcessor extends RequestMatcher {
/**
* process the page, extract urls to fetch, extract the data and store
*
* @param page page
*
* @return whether continue to match
*/
public MatchOther processPage(Page page);
}