public void execute()

in src/main/java/com/epam/gmp/process/QueuedProcessThreadPoolExecutor.java [77:84]


    public void execute(Runnable command) {
        int active = incompleteScripts.incrementAndGet(); //Should be before execute.
        super.execute(command);
        synchronized (incompleteScripts) {
            incompleteScripts.notifyAll();
        }
        logger.debug("EXEC.Request ({}): Active runners: {}; threadPoolActive: {} ", command, active, getActiveCount());
    }