260261262263264265266267
return new ThreadPoolExecutor( poolSize, (maximumPoolSize < poolSize) ? poolSize : maximumPoolSize, 50000L, TimeUnit.MILLISECONDS, new SynchronousQueue<Runnable>(), new DaemonThreadFactory() ); }
38394041424344
* Creates a new ManagerEventListenerProxy.<p> * You must set the target by calling {@link #setTarget(ManagerEventListener)}. */ public ManagerEventListenerProxy() { this.executor = Executors.newSingleThreadExecutor(new DaemonThreadFactory()); }
177178179180181182183184