Class ExecutionPausedException

All Implemented Interfaces:
Serializable

public final class ExecutionPausedException extends SchedulerException
Exception used by the Executable interface to indicate request execution should be paused to allow submitted sub-requests to execute.

A request executable that submits a sub-request must pause before the sub-request will be executed. After a job Executable submits a sub-request, this exception must thrown by the request executable so the Enterprise Scheduler subsystem will pause the request.

An application paused state value can be associated with this exception. The paused state will be available to the resumed request via the request execution context when the request is resumed.

See Also:
  • Constructor Details

    • ExecutionPausedException

      public ExecutionPausedException()
      Constructs a new exception with null detail message and null paused state. The cause is not initialized.
    • ExecutionPausedException

      public ExecutionPausedException(String message)
      Constructs a new exception with the specified detail message and null paused state. The cause is not initialized.
      Parameters:
      message - the detail message. This can be retrieved by the getMessage method.
    • ExecutionPausedException

      public ExecutionPausedException(String message, String state)
      Constructs a new exception with the specified detail message and paused state. The cause is not initialized.

      The paused state will be made available to the request executable once the sub-requests have completed and the request is resumed.

      Parameters:
      message - the detail message. This can be retrieved by the getMessage method.
      state - the application-specified paused state. This can be retrieved by the getPausedState method.
  • Method Details

    • getPausedState

      public String getPausedState()
      Gets the paused state associated with this exception.
      Returns:
      the paused state, or null if none
    • setPausedState

      public void setPausedState(String state)
      Sets the paused state associated with this exception.
      Parameters:
      state - the application-specified paused state. This can be null.