Interface Startable

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean isActive()
      Indicates whether this is currently active.
      void start()
      Start the component
      void stop()
      Stop the component and clean up any resources
    • Method Detail

      • start

        void start()
            throws Exception
        Start the component
        Throws:
        Exception - A generic failure
      • stop

        void stop()
           throws Exception
        Stop the component and clean up any resources
        Throws:
        Exception - A generic failure
      • isActive

        boolean isActive()

        Indicates whether this is currently active.

        Returns:
        true if this is active, false otherwise.