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

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DFuture.java104 * then the <tt>mayInterruptIfRunning</tt> parameter determines
112 * @param mayInterruptIfRunning <tt>true</tt> if the thread executing this
119 boolean cancel(boolean mayInterruptIfRunning); argument
H A DFutureTask.java164 public boolean cancel(boolean mayInterruptIfRunning) { argument
167 if (mayInterruptIfRunning) {
H A DForkJoinTask.java816 * @param mayInterruptIfRunning this value has no effect in the
822 public boolean cancel(boolean mayInterruptIfRunning) { argument
H A DScheduledThreadPoolExecutor.java277 public boolean cancel(boolean mayInterruptIfRunning) { argument
278 boolean cancelled = super.cancel(mayInterruptIfRunning);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DCompletedFuture.java47 public boolean cancel(boolean mayInterruptIfRunning) { argument
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DCompletedFuture.java93 public boolean cancel(boolean mayInterruptIfRunning) { argument
H A DPendingFuture.java226 public boolean cancel(boolean mayInterruptIfRunning) { argument
243 if (mayInterruptIfRunning) {
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingWorker.java545 public final boolean cancel(boolean mayInterruptIfRunning) { argument
546 return future.cancel(mayInterruptIfRunning);
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DCustomized.java105 static <V> void cancel(FutureTask<V> task, boolean mayInterruptIfRunning) { argument
106 task.cancel(mayInterruptIfRunning);

Completed in 250 milliseconds