public int getExecutorLargestPoolSize()

in src/main/java/org/apache/sling/commons/threads/impl/ThreadPoolMBeanImpl.java [67:74]


    public int getExecutorLargestPoolSize() {
        final ThreadPoolExecutor tpe = this.entry.getExecutor();
        if ( tpe != null ) {
            return tpe.getLargestPoolSize();
        } else {
            return -1;
        }
    }