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

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.core.task;
  2. /**
  3.  * Interface that will be implemented upon each Task to be carried out
  4.  * by a Thread.
  5.  *
  6.  * $Id: Task.java,v 1.4 2003/04/25 21:29:02 vanrogu Exp $
  7.  *
  8.  * @author G黱ther Van Roey
  9.  */
  10. public interface Task {
  11.     /**
  12.      * Has the task executed.  The thread calling this method will do it's
  13.      * time in there :).
  14.      */
  15.     public void execute();
  16. }