Uses of Class
org.apache.cassandra.concurrent.ContinuationsExecutor

Packages that use ContinuationsExecutor
org.apache.cassandra.concurrent   
 

Uses of ContinuationsExecutor in org.apache.cassandra.concurrent
 

Fields in org.apache.cassandra.concurrent declared as ContinuationsExecutor
protected  ContinuationsExecutor SingleThreadedContinuationStage.executorService_
           
 

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.
 



Copyright © 2009 The Apache Software Foundation