| com.rift.coad.lib.thread.BasicRunnable
BasicRunnable | public interface BasicRunnable (Code) | | The coadunation runnable interface. This interface can be used when direct
inheritance from the BasicThread is not desirable or effective.
author: Brett Chaldecott |
Method Summary | |
public void | process() This method will be called to perform the processing. | public void | terminate() This method is called to soft terminate the processing thread. |
process | public void process()(Code) | | This method will be called to perform the processing. This method
replaces the traditional run method.
|
terminate | public void terminate()(Code) | | This method is called to soft terminate the processing thread.
|
|
|