ThrottleProvider.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:1k
源码类别:

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.core.throttle;
  2. import net.javacoding.jspider.core.util.config.PropertySet;
  3. /**
  4.  * Interface that should be implemented by each Throttle provider class.
  5.  * This allows for pluggable provider classes to be referenced from the
  6.  * configuration files.
  7.  *
  8.  * $Id: ThrottleProvider.java,v 1.2 2002/12/23 17:13:36 vanrogu Exp $
  9.  *
  10.  * @author G黱ther Van Roey
  11.  */
  12. public interface ThrottleProvider {
  13.     /**
  14.      * Method that generated the Throttle implementation.
  15.      * @return Throttle implementation
  16.      */
  17.     public Throttle createThrottle(PropertySet props);
  18. }