Interface ITimerJobCompletionWorkflowEvent

All Superinterfaces:
IWorkflowEvent
All Known Implementing Classes:
TimerJobCompletionWorkflowEvent

@Scriptable public interface ITimerJobCompletionWorkflowEvent extends IWorkflowEvent
  • Method Summary

    Modifier and Type
    Method
    Description
    Get a list of exceptions that occurred during the timer job execution.
    Get the GUID of the timer that created this event.
    boolean
    Check if errors occurred during the timer job execution.
  • Method Details

    • getTimerGuid

      String getTimerGuid()
      Get the GUID of the timer that created this event.
      Returns:
      The timer GUID.
    • hasError

      boolean hasError()
      Check if errors occurred during the timer job execution.
      Returns:
      true if errors occurred during the timer job execution, or false otherwise.
    • getErrors

      List<Throwable> getErrors()
      Get a list of exceptions that occurred during the timer job execution.
      Returns:
      A possibly empty list of exceptions.