Class OpenSearchRejectedExecutionException

All Implemented Interfaces:
Serializable

public class OpenSearchRejectedExecutionException extends RejectedExecutionException
Thrown when an execution is rejected
See Also:
Opensearch.internal:
  • Constructor Details

    • OpenSearchRejectedExecutionException

      public OpenSearchRejectedExecutionException(String message, boolean isExecutorShutdown)
    • OpenSearchRejectedExecutionException

      public OpenSearchRejectedExecutionException(String message)
    • OpenSearchRejectedExecutionException

      public OpenSearchRejectedExecutionException()
  • Method Details

    • isExecutorShutdown

      public boolean isExecutorShutdown()
      Checks if the thread pool that rejected the execution was terminated shortly after the rejection. Its possible that this returns false and the thread pool has since been terminated but if this returns false then the termination wasn't a factor in this rejection. Conversely if this returns true the shutdown was probably a factor in this rejection but might have been triggered just after the action rejection.