Override getQueueCapacity to return delegate's value (#2204)

This commit is contained in:
Som Shankar Bhattacharyya
2022-09-09 18:02:41 +05:30
committed by GitHub
parent 8a9e365687
commit c143913a1d

View File

@@ -172,6 +172,11 @@ public class LazyTraceThreadPoolTaskExecutor extends ThreadPoolTaskExecutor {
return this.delegate.getActiveCount();
}
@Override
public int getQueueCapacity() {
return this.delegate.getQueueCapacity();
}
@Override
public void destroy() {
this.delegate.destroy();