Interface IDelayedAction


  • public interface IDelayedAction
    Delayed actions are activities that are executed by the scheduler (e.g. some housekeeping or asking for access to a passive resource) but require the process to be running. DelayedActions have priority of the proceeding of the process as they have to be finished in oder to continue process execution.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean perform()
      Executes the delayed action; If the result is true the action has been successfully executed.
    • Method Detail

      • perform

        boolean perform()
        Executes the delayed action; If the result is true the action has been successfully executed.