Methods in org.apache.cassandra.concurrent with parameters of type ContinuationsExecutor |
void |
ContinuationsExecutor.CallerRunsPolicy.rejectedExecution(java.lang.Runnable r,
ContinuationsExecutor e)
Executes task r in the caller's thread, unless the executor has been
shut down, in which case the task is discarded. |
void |
ContinuationsExecutor.AbortPolicy.rejectedExecution(java.lang.Runnable r,
ContinuationsExecutor e)
Always throws RejectedExecutionException. |
void |
ContinuationsExecutor.DiscardPolicy.rejectedExecution(java.lang.Runnable r,
ContinuationsExecutor e)
Does nothing, which has the effect of discarding task r. |
void |
ContinuationsExecutor.DiscardOldestPolicy.rejectedExecution(java.lang.Runnable r,
ContinuationsExecutor e)
Obtains and ignores the next task that the executor
would otherwise execute, if one is immediately available,
and then retries execution of task r, unless the executor
is shut down, in which case task r is instead discarded. |