| org.archive.crawler.postprocessor.WaitEvaluator org.archive.crawler.postprocessor.ContentBasedWaitEvaluator
All known Subclasses: org.archive.crawler.postprocessor.ImageWaitEvaluator, org.archive.crawler.postprocessor.TextWaitEvaluator,
ContentBasedWaitEvaluator | public class ContentBasedWaitEvaluator extends WaitEvaluator (Code) | | A WaitEvaluator that compares the CrawlURIs content type to a configurable
regular expression. If it matches, then the wait evaluation is performed.
Otherwise the processor passes on the CrawlURI, doing nothing.
author: Kristinn Sigurdsson See Also: org.archive.crawler.postprocessor.WaitEvaluator |
ATTR_CONTENT_REGEXPR | final public static String ATTR_CONTENT_REGEXPR(Code) | | The regular expression that we limit this evaluator to.
|
DEFAULT_CONTENT_REGEXPR | final protected static String DEFAULT_CONTENT_REGEXPR(Code) | | |
ContentBasedWaitEvaluator | public ContentBasedWaitEvaluator(String name)(Code) | | Constructor
Parameters: name - The name of the module |
ContentBasedWaitEvaluator | public ContentBasedWaitEvaluator(String name, String description, String defaultRegExpr, Long default_inital_wait_interval, Long default_max_wait_interval, Long default_min_wait_interval, Double default_unchanged_factor, Double default_changed_factor)(Code) | | Constructor
Parameters: name - The name of the module Parameters: description - Description of the module Parameters: default_inital_wait_interval - The default value for initial waittime Parameters: default_max_wait_interval - The maximum value for wait time Parameters: default_min_wait_interval - The minimum value for wait time Parameters: default_unchanged_factor - The factor for changing wait times ofunchanged documents (will be multiplied by this value) Parameters: default_changed_factor - The factor for changing wait times ofchanged documents (will be divided by this value) |
|
|