Interface Executable
-
public interface Executable
The Executable can be implemented by components that need to perform some work. In many respects it is similar to Runnable except that it also allows an application to throw a non-Runtime Exception.The work done may be short lived (ie a simple task) or it could be a long running.
- Version:
- CVS $Revision: 1.13 $ $Date: 2003/02/11 15:58:38 $
- Author:
- Avalon Development Team
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute()
Execute the action associated with this component.
-