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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java129 * #allowCoreThreadTimeOut(boolean)} can be used to apply this
266 * setting {@link #allowCoreThreadTimeOut(boolean)}. </dd>
516 * present or if allowCoreThreadTimeOut. Otherwise they wait
526 private volatile boolean allowCoreThreadTimeOut; field in class:ThreadPoolExecutor
530 * (and not allow to time out etc) unless allowCoreThreadTimeOut
1011 int min = allowCoreThreadTimeOut ? 0 : corePoolSize;
1031 * {@code allowCoreThreadTimeOut || workerCount > corePoolSize})
1055 timed = allowCoreThreadTimeOut || wc > corePoolSize;
1176 * if they are idle, unless {@code allowCoreThreadTimeOut} is set
1207 * if they are idle, unless {@code allowCoreThreadTimeOut} i
1643 public void allowCoreThreadTimeOut(boolean value) { method in class:ThreadPoolExecutor
[all...]

Completed in 162 milliseconds