Override getQueueCapacity to return delegate's value (#2204)
This commit is contained in:
committed by
GitHub
parent
8a9e365687
commit
c143913a1d
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user