Uses of Interface
com.alibaba.dubbo.common.threadpool.ThreadPool

Packages that use ThreadPool
com.alibaba.dubbo.common.threadpool.support.cached   
com.alibaba.dubbo.common.threadpool.support.fixed   
com.alibaba.dubbo.common.threadpool.support.limited   
 

Uses of ThreadPool in com.alibaba.dubbo.common.threadpool.support.cached
 

Classes in com.alibaba.dubbo.common.threadpool.support.cached that implement ThreadPool
 class CachedThreadPool
          此线程池可伸缩,线程空闲一分钟后回收,新请求重新创建线程,来源于:Executors.newCachedThreadPool()
 

Uses of ThreadPool in com.alibaba.dubbo.common.threadpool.support.fixed
 

Classes in com.alibaba.dubbo.common.threadpool.support.fixed that implement ThreadPool
 class FixedThreadPool
          此线程池启动时即创建固定大小的线程数,不做任何伸缩,来源于:Executors.newFixedThreadPool()
 

Uses of ThreadPool in com.alibaba.dubbo.common.threadpool.support.limited
 

Classes in com.alibaba.dubbo.common.threadpool.support.limited that implement ThreadPool
 class LimitedThreadPool
          此线程池一直增长,直到上限,增长后不收缩。
 



Copyright © 2012–2017 Alibaba. All rights reserved.