Schnittstelle IThreadPoolRetryHandler

Funktionsschnittstelle:
Dies ist eine funktionale Schnittstelle, die somit als Zuweisungsziel für einen Lambdaausdruck oder eine Methodenreferenz verwendet werden kann.

@FunctionalInterface public interface IThreadPoolRetryHandler
Interface which specifies a handler which will be called when the thread pool throws any exception.
Seit:
4.2.0 - 2022-07-14
Autor:
hypfvieh
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    boolean
    handle(ExecutorNames _executor, Exception _ex)
    Called to handle an exception.
  • Methodendetails

    • handle

      boolean handle(ExecutorNames _executor, Exception _ex)
      Called to handle an exception.

      This method should return true to retry execution or false to just ignore the error and drop the unhandled message.

      Parameter:
      _executor - the executor which has thrown the exception
      _ex - the exception which was thrown
      Gibt zurück:
      true to retry execution of the failed runnable, false to ignore runnable