接口的使用
cn.taketoday.core.task.AsyncTaskExecutor
使用AsyncTaskExecutor的程序包
程序包
说明
This package defines core TaskExecutor abstraction,
and provides SyncTaskExecutor and SimpleAsyncTaskExecutor implementations.
Support classes for TaskExecutor abstraction.
-
cn.taketoday.core.task中AsyncTaskExecutor的使用
修饰符和类型接口说明interfaceExtension of theAsyncTaskExecutorinterface, adding the capability to submit tasks forListenableFutures.修饰符和类型类说明classTaskExecutorimplementation that fires up a new Thread for each task, executing it asynchronously.classATaskExecutorimplementation based on virtual threads in JDK 21+. -
cn.taketoday.core.task.support中AsyncTaskExecutor的使用
修饰符和类型类说明classAdapter that takes a JDKjava.util.concurrent.Executorand exposes aTaskExecutorfor it.