KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > javacoding > jspider > core > task > Task


1 package net.javacoding.jspider.core.task;
2
3 /**
4  * Interface that will be implemented upon each Task to be carried out
5  * by a Thread.
6  *
7  * $Id: Task.java,v 1.4 2003/04/25 21:29:02 vanrogu Exp $
8  *
9  * @author Günther Van Roey
10  */

11 public interface Task {
12
13     /**
14      * Has the task executed. The thread calling this method will do it's
15      * time in there :).
16      */

17     public void execute();
18
19 }
20
Popular Tags