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