public int getExecutorCorePoolSize()

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


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