package us.codecraft.webmagic.handler; import us.codecraft.webmagic.Page; /** * @author code4crafter@gmail.com */ 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); }