|
|
|
@ -80,13 +80,13 @@ public class DynamicThreadPoolExecutor extends ExtensibleThreadPoolExecutor impl
|
|
|
|
|
* or {@code threadFactory} or {@code handler} is null
|
|
|
|
|
*/
|
|
|
|
|
public DynamicThreadPoolExecutor(
|
|
|
|
|
int corePoolSize, int maximumPoolSize,
|
|
|
|
|
long keepAliveTime, TimeUnit unit,
|
|
|
|
|
long executeTimeOut, boolean waitForTasksToCompleteOnShutdown, long awaitTerminationMillis,
|
|
|
|
|
@NonNull BlockingQueue<Runnable> blockingQueue,
|
|
|
|
|
@NonNull String threadPoolId,
|
|
|
|
|
@NonNull ThreadFactory threadFactory,
|
|
|
|
|
@NonNull RejectedExecutionHandler rejectedExecutionHandler) {
|
|
|
|
|
int corePoolSize, int maximumPoolSize,
|
|
|
|
|
long keepAliveTime, TimeUnit unit,
|
|
|
|
|
long executeTimeOut, boolean waitForTasksToCompleteOnShutdown, long awaitTerminationMillis,
|
|
|
|
|
@NonNull BlockingQueue<Runnable> blockingQueue,
|
|
|
|
|
@NonNull String threadPoolId,
|
|
|
|
|
@NonNull ThreadFactory threadFactory,
|
|
|
|
|
@NonNull RejectedExecutionHandler rejectedExecutionHandler) {
|
|
|
|
|
super(
|
|
|
|
|
threadPoolId, new DefaultThreadPoolPluginManager(),
|
|
|
|
|
corePoolSize, maximumPoolSize, keepAliveTime, unit,
|
|
|
|
|