Searched defs:maximumPoolSize (Results 1 - 1 of 1) sorted by relevance

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java45 * maximumPoolSize (see {@link #getMaximumPoolSize}).
50 * there are more than corePoolSize but less than maximumPoolSize
52 * full. By setting corePoolSize and maximumPoolSize the same, you
53 * create a fixed-size thread pool. By setting maximumPoolSize to an
115 * this would exceed maximumPoolSize, in which case, the task will be
138 * threads will ever be created. (And the value of the maximumPoolSize
490 private volatile int maximumPoolSize; field in class:ThreadPoolExecutor
839 * maximumPoolSize. (A boolean indicator is used here rather than a
860 wc >= (core ? corePoolSize : maximumPoolSize))
958 * 1. There are more than maximumPoolSize worker
1116 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) argument
1150 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) argument
1185 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) argument
1222 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) argument
1532 setMaximumPoolSize(int maximumPoolSize) argument
[all...]

Completed in 51 milliseconds