接口的使用
com.alibaba.dubbo.common.threadpool.ThreadPool
-
-
com.alibaba.dubbo.common.threadpool.support.cached中ThreadPool的使用
实现ThreadPool的com.alibaba.dubbo.common.threadpool.support.cached中的类 修饰符和类型 类 说明 class
CachedThreadPool
This thread pool is self-tuned. -
com.alibaba.dubbo.common.threadpool.support.eager中ThreadPool的使用
实现ThreadPool的com.alibaba.dubbo.common.threadpool.support.eager中的类 修饰符和类型 类 说明 class
EagerThreadPool
EagerThreadPool When the core threads are all in busy, create new thread instead of putting task into blocking queue. -
com.alibaba.dubbo.common.threadpool.support.fixed中ThreadPool的使用
实现ThreadPool的com.alibaba.dubbo.common.threadpool.support.fixed中的类 修饰符和类型 类 说明 class
FixedThreadPool
Creates a thread pool that reuses a fixed number of threads -
com.alibaba.dubbo.common.threadpool.support.limited中ThreadPool的使用
实现ThreadPool的com.alibaba.dubbo.common.threadpool.support.limited中的类 修饰符和类型 类 说明 class
LimitedThreadPool
Creates a thread pool that creates new threads as needed until limits reaches.
-