Class AbstractRunnable
java.lang.Object
org.opensearch.common.util.concurrent.AbstractRunnable
- All Implemented Interfaces:
Runnable
- Direct Known Subclasses:
AbstractLifecycleRunnable
,ActionRunnable
,Scheduler.ReschedulingRunnable
,TaskAwareRunnable
An extension to runnable.
- Opensearch.internal:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected abstract void
doRun()
This method has the same semantics asRunnable.run()
boolean
Should the runnable force its execution in case it gets rejected?void
onAfter()
This method is called in a finally block after successful execution or on a rejection.abstract void
This method is invoked for all exception thrown bydoRun()
void
This should be executed if the thread-pool executing this action rejected the execution.final void
run()
-
Constructor Details
-
AbstractRunnable
public AbstractRunnable()
-
-
Method Details
-
isForceExecution
public boolean isForceExecution()Should the runnable force its execution in case it gets rejected? -
run
public final void run() -
onAfter
public void onAfter()This method is called in a finally block after successful execution or on a rejection. -
onFailure
This method is invoked for all exception thrown bydoRun()
-
onRejection
This should be executed if the thread-pool executing this action rejected the execution. The default implementation forwards toonFailure(Exception)
-
doRun
This method has the same semantics asRunnable.run()
- Throws:
InterruptedException
- if the run method throws an InterruptedExceptionException
-