Package org.apache.tomcat.util.threads
Class VirtualThreadExecutor
java.lang.Object
java.util.concurrent.AbstractExecutorService
org.apache.tomcat.util.threads.VirtualThreadExecutor
- All Implemented Interfaces:
AutoCloseable
,Executor
,ExecutorService
An executor that uses a new virtual thread for each task.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
awaitTermination
(long timeout, TimeUnit unit) void
boolean
boolean
void
shutdown()
Methods inherited from class java.util.concurrent.AbstractExecutorService
invokeAll, invokeAll, invokeAny, invokeAny, newTaskFor, newTaskFor, submit, submit, submit
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.concurrent.ExecutorService
close
-
Constructor Details
-
VirtualThreadExecutor
-
-
Method Details
-
execute
-
shutdown
public void shutdown() -
shutdownNow
The VirtualThreadExecutor does not track in-progress tasks so calling this method is equivalent to calling
shutdown()
. -
isShutdown
public boolean isShutdown() -
isTerminated
public boolean isTerminated()The VirtualThreadExecutor does not track in-progress tasks so calling this method is equivalent to calling
isShutdown()
. -
awaitTermination
The VirtualThreadExecutor does not track in-progress tasks so calling this method is effectively waiting for
shutdown()
to be called.- Throws:
InterruptedException
-