Schnittstelle IStartableWorkflowObject

Alle Superschnittstellen:
IActivatableWorkflowObject
Alle bekannten Implementierungsklassen:
AbstractIMAPFolderWorkflowEventSource, AbstractJMSWorkflowEventSource, AbstractSingleThreadedWorkflowEventSource, ExchangeOnlineIMAPFolderPollingWorkflowEventSource, FileSystemWorkflowEventSource, IMAPFolderPollingWorkflowEventSource, JMSQueueWorkflowEventSource, JMSTopicWorkflowEventSource, MaildirWorkflowEventSource, MQTTWorkflowEventSource, UDPWorkflowEventSource

public interface IStartableWorkflowObject extends IActivatableWorkflowObject
Seit:
Intrexx 7.0.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    boolean
    Check if the workflow object is running.
    void
    Start the workflow object.
    void
    Stop the workflow object.

    Von Schnittstelle geerbte Methoden de.uplanet.lucy.server.workflow.IActivatableWorkflowObject

    isActive, setActive
  • Methodendetails

    • 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.
      Gibt zurück:
      true if the workflow object is running, or false otherwise.