Interface Startable


  • public interface Startable
    The 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.14 $ $Date: 2003/02/11 15:58:38 $
    Author:
    Avalon Development Team
    • Method Detail

      • start

        void start()
            throws java.lang.Exception
        Starts the component.
        Throws:
        java.lang.Exception - if Component can not be started
      • stop

        void stop()
           throws java.lang.Exception
        Stops the component.
        Throws:
        java.lang.Exception - if the Component can not be Stopped.