Interface Startable
-
public interface StartableThe Startable interface is used when components need to be "running" to be active. It provides a method through which components can be "started" and "stopped" without requiring a thread. Note that these methods should start the component but return imediately.- Version:
- CVS $Revision: 1.16 $ $Date: 2004/02/11 14:34:24 $
- Author:
- Avalon Development Team
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstart()Starts the component.voidstop()Stops the component.
-