this.threadFactory = new ServerManagedThreadFactory(threadFactorySource.getManagedThreadFactory(), notificationHelper);
}
protected synchronized ManagedScheduledExecutorService getManagedScheduledExecutorService() {
if (this.executor == null) {
this.executor = new ServerManagedScheduledExecutorService(this.corePoolSize,
this.threadFactory,
this.contextHandler);
}
return this.executor;
}