Searched refs:newTaskFor (Results 1 – 5 of 5) sorted by relevance
126 private RunnableFuture<V> newTaskFor(Callable<V> task) { in newTaskFor() method in ExecutorCompletionService130 return aes.newTaskFor(task); in newTaskFor()133 private RunnableFuture<V> newTaskFor(Runnable task, V result) { in newTaskFor() method in ExecutorCompletionService137 return aes.newTaskFor(task, result); in newTaskFor()182 RunnableFuture<V> f = newTaskFor(task); in submit()189 RunnableFuture<V> f = newTaskFor(task, result); in submit()
92 protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) { in newTaskFor() method in AbstractExecutorService107 protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) { in newTaskFor() method in AbstractExecutorService117 RunnableFuture<Void> ftask = newTaskFor(task, null); in submit()128 RunnableFuture<T> ftask = newTaskFor(task, result); in submit()139 RunnableFuture<T> ftask = newTaskFor(task); in submit()240 RunnableFuture<T> f = newTaskFor(t); in invokeAll()270 futures.add(newTaskFor(t)); in invokeAll()
3454 protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) { in newTaskFor() method in ForkJoinPool3458 protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) { in newTaskFor() method in ForkJoinPool
171 protected <T> RunnableFuture<T> newTaskFor(Callable<T> c) { in testNewTaskForCallable()202 protected <T> RunnableFuture<T> newTaskFor(Runnable t, T r) { in testNewTaskForRunnable()
153 protected <V> RunnableFuture<V> newTaskFor(Callable<V> c) { in newTaskFor() method in ThreadPoolExecutorSubclassTest.CustomTPE156 protected <V> RunnableFuture<V> newTaskFor(Runnable r, V v) { in newTaskFor() method in ThreadPoolExecutorSubclassTest.CustomTPE