in src/main/java/org/apache/sling/commons/threads/ModifiableThreadPoolConfig.java [113:127]
public ModifiableThreadPoolConfig(final ThreadPoolConfig copy) {
if ( copy != null ) {
this.minPoolSize = copy.getMinPoolSize();
this.maxPoolSize = copy.getMaxPoolSize();
this.queueSize = copy.getQueueSize();
this.maxThreadAge = copy.getMaxThreadAge();
this.keepAliveTime = copy.getKeepAliveTime();
this.blockPolicy = copy.getBlockPolicy();
this.shutdownGraceful = copy.isShutdownGraceful();
this.shutdownWaitTimeMs = copy.getShutdownWaitTimeMs();
this.factory = copy.getFactory();
this.priority = copy.getPriority();
this.isDaemon = copy.isDaemon();
}
}