01: package net.javacoding.jspider.core.task;
02:
03: /**
04: * Interface that will be implemented upon each Task to be carried out
05: * by a Thread.
06: *
07: * $Id: Task.java,v 1.4 2003/04/25 21:29:02 vanrogu Exp $
08: *
09: * @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: }
|