Uses of Class
org.sape.carbon.services.threadpool.QueueFullPolicyEnum

Packages that use QueueFullPolicyEnum
org.sape.carbon.services.threadpool   
 

Uses of QueueFullPolicyEnum in org.sape.carbon.services.threadpool
 

Fields in org.sape.carbon.services.threadpool declared as QueueFullPolicyEnum
static QueueFullPolicyEnum ThreadPoolConfiguration.QueueFullPolicy
          QueueFullPolicy determines how the thread pool deals with new execute requests when the pending queue is already full.
static QueueFullPolicyEnum QueueFullPolicyEnum.RUN
          Run signals that the ThreadPool should run the given task on client thread (i.e.
static QueueFullPolicyEnum QueueFullPolicyEnum.WAIT
          Wait signals that the ThreadPool should block the client thread (i.e.
static QueueFullPolicyEnum QueueFullPolicyEnum.ABORT
          Abort signals ThreadPool to throw a RuntimeException.
static QueueFullPolicyEnum QueueFullPolicyEnum.DISCARD
          Discard signals the ThreadPool to discard the current task.
static QueueFullPolicyEnum QueueFullPolicyEnum.DISCARD_OLDEST
          Discard-oldest signals the ThreadPool to discard the task at the head of the queue.
 

Methods in org.sape.carbon.services.threadpool that return QueueFullPolicyEnum
 QueueFullPolicyEnum ThreadPoolConfiguration.getQueueFullPolicy()
          QueueFullPolicy determines how the thread pool deals with new execute requests when the pending queue is already full.
 

Methods in org.sape.carbon.services.threadpool with parameters of type QueueFullPolicyEnum
 void ThreadPoolConfiguration.setQueueFullPolicy(QueueFullPolicyEnum policy)
          QueueFullPolicy determines how the thread pool deals with new execute requests when the pending queue is already full.
 



Copyright 1999-2003 Sapient Corporation. All Rights Reserved.