Searched refs:firstTask (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java599 Runnable firstTask; field in class:ThreadPoolExecutor.Worker
605 * @param firstTask the first task (null if none)
607 Worker(Runnable firstTask) { argument
609 this.firstTask = firstTask;
870 * new worker is created and started, running firstTask as its
878 * @param firstTask the task the new thread should run first (or
892 private boolean addWorker(Runnable firstTask, boolean core) { argument
901 firstTask == null &&
924 w = new Worker(firstTask);
[all...]

Completed in 30 milliseconds