in src/main/java/org/apache/sling/commons/scheduler/impl/SchedulerProxy.java [107:118]
public void dispose() {
try {
this.scheduler.shutdown();
} catch (SchedulerException e) {
this.logger.debug("Exception during shutdown of scheduler.", e);
}
if ( this.logger.isDebugEnabled() ) {
this.logger.debug("{}for pool {} stopped.", PREFIX, poolName);
}
this.threadPoolManager.release(this.threadPool);
}