ThreadPoolBuilder add singlePool api.

pull/117/head
chen.ma 3 years ago
parent 9fdf96841f
commit 34e11f6ae8

@ -147,6 +147,13 @@ public class ThreadPoolBuilder implements Builder<ThreadPoolExecutor> {
return this;
}
public ThreadPoolBuilder singlePool() {
int singleNum = 1;
this.corePoolSize = singleNum;
this.maxPoolSize = singleNum;
return this;
}
public ThreadPoolBuilder poolThreadSize(int corePoolSize, int maxPoolSize) {
this.corePoolSize = corePoolSize;
this.maxPoolSize = maxPoolSize;

Loading…
Cancel
Save