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

/libcore/jsr166-tests/src/test/java/jsr166/
H A DThreadPoolExecutorSubclassTest.java161 int maximumPoolSize,
165 super(corePoolSize, maximumPoolSize, keepAliveTime, unit,
169 int maximumPoolSize,
174 super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue,
179 int maximumPoolSize,
184 super(corePoolSize, maximumPoolSize, keepAliveTime, unit, workQueue,
188 int maximumPoolSize,
194 super(corePoolSize, maximumPoolSize, keepAliveTime, unit,
814 * Constructor throws if maximumPoolSize is less than zero
825 * Constructor throws if maximumPoolSize i
160 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) argument
168 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) argument
178 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) argument
187 CustomTPE(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) argument
[all...]
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java87 * maximumPoolSize (see {@link #getMaximumPoolSize}).
93 * maximumPoolSize threads running, a new thread will be created only
94 * if the queue is full. By setting corePoolSize and maximumPoolSize
96 * maximumPoolSize to an essentially unbounded value such as {@code
165 * this would exceed maximumPoolSize, in which case, the task will be
188 * threads will ever be created. (And the value of the maximumPoolSize
565 private volatile int maximumPoolSize; field in class:ThreadPoolExecutor
914 * maximumPoolSize. (A boolean indicator is used here rather than a
935 wc >= (core ? corePoolSize : maximumPoolSize))
1051 * 1. There are more than maximumPoolSize worker
1215 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue) argument
1249 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory) argument
1284 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) argument
1321 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler handler) argument
1691 setMaximumPoolSize(int maximumPoolSize) argument
[all...]

Completed in 23 milliseconds