|
|
@ -69,7 +69,7 @@ public abstract class AbstractThreadPoolRuntime {
|
|
|
|
long rejectCount = actualExecutor instanceof DynamicThreadPoolExecutor ? ((DynamicThreadPoolExecutor) actualExecutor).getRejectCountNum() : -1L;
|
|
|
|
long rejectCount = actualExecutor instanceof DynamicThreadPoolExecutor ? ((DynamicThreadPoolExecutor) actualExecutor).getRejectCountNum() : -1L;
|
|
|
|
ThreadPoolRunStateInfo stateInfo = ThreadPoolRunStateInfo.builder()
|
|
|
|
ThreadPoolRunStateInfo stateInfo = ThreadPoolRunStateInfo.builder()
|
|
|
|
.tpId(threadPoolId)
|
|
|
|
.tpId(threadPoolId)
|
|
|
|
.activeCount(activeCount)
|
|
|
|
.activeSize(activeCount)
|
|
|
|
.poolSize(actualExecutor.getPoolSize())
|
|
|
|
.poolSize(actualExecutor.getPoolSize())
|
|
|
|
.completedTaskCount(actualExecutor.getCompletedTaskCount())
|
|
|
|
.completedTaskCount(actualExecutor.getCompletedTaskCount())
|
|
|
|
.largestPoolSize(largestPoolSize)
|
|
|
|
.largestPoolSize(largestPoolSize)
|
|
|
|