in src/main/java/org/apache/sling/commons/threads/impl/ThreadPoolMBeanImpl.java [85:92]
public int getExecutorPoolSize() {
final ThreadPoolExecutor tpe = this.entry.getExecutor();
if ( tpe != null ) {
return tpe.getPoolSize();
} else {
return -1;
}
}