All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.codecraft.webmagic.handler.RequestMatcher Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package us.codecraft.webmagic.handler;

import us.codecraft.webmagic.Request;

/**
 * @author [email protected]
 * @since 0.5.0
 */
public interface RequestMatcher {

    /**
     * Check whether to process the page.

* Please DO NOT change page status in this method. * * @param page page * * @return whether matches */ public boolean match(Request page); public enum MatchOther { YES, NO } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy