1 package us.codecraft.webmagic.handler; 2 3 import us.codecraft.webmagic.Page; 4 5 /** 6 * @author code4crafter@gmail.com 7 */ 8 public interface SubPageProcessor extends RequestMatcher { 9 10 /** 11 * process the page, extract urls to fetch, extract the data and store 12 * 13 * @param page page 14 * 15 * @return whether continue to match 16 */ 17 public MatchOther processPage(Page page); 18 19 }