@@ -240,13 +240,12 @@ public static ExecutorService newCachedThreadPool(ThreadFactory threadFactory) {
240
240
}
241
241
242
242
/**
243
- * Creates an Executor that starts a new Thread for each task. The Executor
244
- * is <i>owned</i> by the Thread that creates it.
243
+ * Creates an Executor that starts a new Thread for each task.
245
244
*
246
245
* <p> An Executor created by this method is intended to be used in a
247
246
* <em>structured manner</em>. It is <em>owned</em> by the Thread that creates
248
- * it and must be {@linkplain ExecutorService#close() closed} by the thread
249
- * when it is finished with the executor. Failure to invoke the {@code
247
+ * it and must be {@linkplain ExecutorService#close() closed} by the same
248
+ * thread when it is finished with the executor. Failure to invoke the {@code
250
249
* close} method may result in a memory leak. The {@code close}, {@link
251
250
* ExecutorService#shutdown() shutdown}, and {@link ExecutorService#shutdownNow()
252
251
* shutdownNow} methods throw {@code IllegalCallerException} if invoked by
@@ -260,7 +259,8 @@ public static ExecutorService newCachedThreadPool(ThreadFactory threadFactory) {
260
259
*
261
260
* <p> Invoking {@link Future#cancel(boolean) cancel(true)} on a {@link
262
261
* Future Future} representing the pending result of a task submitted to
263
- * the Executor will {@link Thread#interrupt() interrupt} the thread.
262
+ * the Executor will {@link Thread#interrupt() interrupt} the thread
263
+ * executing the task.
264
264
*
265
265
* @apiNote
266
266
* The {@link #newUnownedThreadExecutor(ThreadFactory)} method should be
@@ -272,21 +272,37 @@ public static ExecutorService newCachedThreadPool(ThreadFactory threadFactory) {
272
272
* @since 99
273
273
*/
274
274
public static ExecutorService newThreadExecutor (ThreadFactory threadFactory ) {
275
- return new ThreadExecutor (threadFactory , null , false );
275
+ return new ThreadExecutor (threadFactory , null , true );
276
276
}
277
277
278
278
/**
279
- * Creates an Executor that starts a new Thread for each task. The Executor
280
- * is <i>owned</i> by the Thread that creates it.
281
- *
282
- * The Executor is created with a deadline. If the deadline is reached before
283
- * the Executor has terminated then it is {@link ExecutorService#shutdown()
284
- * shutdown} and its threads are {@linkplain Thread#interrupt() interrupted}
285
- * to cancel the remaining tasks.
286
- * If this method is invoked with a deadline that has already expired then
287
- * it returns an Executor that is already shutdown (any attempt to submit
279
+ * Creates an Executor that starts a new Thread for each task and with a
280
+ * deadline. If the deadline is reached before the Executor has terminated
281
+ * then it is {@link ExecutorService#shutdown() shutdown} and its threads
282
+ * are {@linkplain Thread#interrupt() interrupted} to cancel the remaining
283
+ * tasks. If this method is invoked with a deadline that has already expired
284
+ * then it returns an Executor that is already shutdown (any attempt to submit
288
285
* a task will fail with {@code RejectedExecutionException}).
289
286
*
287
+ * <p> An Executor created by this method is intended to be used in a
288
+ * <em>structured manner</em>. It is <em>owned</em> by the Thread that creates
289
+ * it and must be {@linkplain ExecutorService#close() closed} by the same
290
+ * thread when it is finished with the executor. Failure to invoke the {@code
291
+ * close} method may result in a memory leak. The {@code close}, {@code
292
+ * shutdown} and {@link ExecutorService#shutdownNow() shutdownNow} methods
293
+ * throw {@code IllegalCallerException} if invoked by other threads.
294
+ * Executors created by this method enforce strict nesting and must be
295
+ * closed in the reverse order that they are created in. The {@code close}
296
+ * method throws {@code IllegalStateException} if invoked to close
297
+ * executors created by this method in a different order. Once closed by
298
+ * its owner, further attempts to close the executor by its owner has no
299
+ * effect.
300
+ *
301
+ * <p> Invoking {@link Future#cancel(boolean) cancel(true)} on a {@link
302
+ * Future Future} representing the pending result of a task submitted to
303
+ * the Executor will {@link Thread#interrupt() interrupt} the thread
304
+ * executing the task.
305
+ *
290
306
* @param threadFactory the factory to use when creating new threads
291
307
* @param deadline the deadline
292
308
* @return a newly created executor
@@ -295,14 +311,12 @@ public static ExecutorService newThreadExecutor(ThreadFactory threadFactory) {
295
311
*/
296
312
public static ExecutorService newThreadExecutor (ThreadFactory threadFactory ,
297
313
Instant deadline ) {
298
- Objects .requireNonNull (threadFactory );
299
314
Objects .requireNonNull (deadline );
300
- return new ThreadExecutor (threadFactory , deadline , false );
315
+ return new ThreadExecutor (threadFactory , deadline , true );
301
316
}
302
317
303
318
/**
304
- * Creates an Executor that starts a new virtual Thread for each task. The
305
- * Executor is <i>owned</i> by the Thread that creates it.
319
+ * Creates an Executor that starts a new virtual Thread for each task.
306
320
*
307
321
* <p> This method is equivalent to creating an Executor with the {@link
308
322
* #newThreadExecutor(ThreadFactory)} method and specifying a ThreadFactory
@@ -313,12 +327,12 @@ public static ExecutorService newThreadExecutor(ThreadFactory threadFactory,
313
327
*/
314
328
public static ExecutorService newVirtualThreadExecutor () {
315
329
ThreadFactory factory = Thread .ofVirtual ().factory ();
316
- return new ThreadExecutor (factory , null , false );
330
+ return new ThreadExecutor (factory , null , true );
317
331
}
318
332
319
333
/**
320
- * Creates an Executor that starts a new virtual Thread for each task. The
321
- * Executor is <i>owned</i> by the Thread that creates it .
334
+ * Creates an Executor that starts a new virtual Thread for each task and
335
+ * with a deadline .
322
336
*
323
337
* <p> This method is equivalent to creating an Executor with the {@link
324
338
* #newThreadExecutor(ThreadFactory, Instant)} method and specifying a
@@ -332,15 +346,21 @@ public static ExecutorService newVirtualThreadExecutor() {
332
346
public static ExecutorService newVirtualThreadExecutor (Instant deadline ) {
333
347
Objects .requireNonNull (deadline );
334
348
ThreadFactory factory = Thread .ofVirtual ().factory ();
335
- return new ThreadExecutor (factory , deadline , false );
349
+ return new ThreadExecutor (factory , deadline , true );
336
350
}
337
351
338
352
/**
339
353
* Creates an Executor that starts a new thread for each task.
340
354
*
341
- * The resulting Executor is not owned to any thread, meaning any thread can
342
- * {@link ExecutorService#shutdown() shutdown} the Executor or invoke {@link
343
- * ExecutorService#close() close} if they have the appropriate permission.
355
+ * <p> Unlike {@link #newThreadExecutor(ThreadFactory)}, the Executor is not
356
+ * owned by any thread so any thread can {@link ExecutorService#shutdown()
357
+ * shutdown} the Executor or invoke {@link ExecutorService#close() close}
358
+ * if they have the appropriate permission.
359
+ *
360
+ * <p> Invoking {@link Future#cancel(boolean) cancel(true)} on a {@link
361
+ * Future Future} representing the pending result of a task submitted to
362
+ * the Executor will {@link Thread#interrupt() interrupt} the thread
363
+ * executing the task.
344
364
*
345
365
* @apiNote
346
366
* This method is intended for unstructured usage such as cases where an
@@ -353,7 +373,7 @@ public static ExecutorService newVirtualThreadExecutor(Instant deadline) {
353
373
* @since 99
354
374
*/
355
375
public static ExecutorService newUnownedThreadExecutor (ThreadFactory threadFactory ) {
356
- return new ThreadExecutor (threadFactory , null , true );
376
+ return new ThreadExecutor (threadFactory , null , false );
357
377
}
358
378
359
379
/**
0 commit comments