Interface IStartableWorkflowObject

    • Method Detail

      • start

        void start()
        Start the workflow object.

        A call to this method must not throw an exception if the object is already running.

      • stop

        void stop()
        Stop the workflow object.

        A call to this method must not throw an exception if the object is already stopped.

      • isRunning

        boolean isRunning()
        Check if the workflow object is running.
        Returns:
        true if the workflow object is running, or false otherwise.