pipIrr-platform/pipIrr-common/src/main/java/com/dy/common/threadPool/ThreadPool.java
@@ -10,6 +10,13 @@ */ public interface Pool{ /** * 线程池中线程个数 * @return */ public Integer size() ; public Integer maxThread() ; public Integer minThread() ; /** * 把所要执行的工作对象实例放入线程池中 * @param job ThreadJob 工作对象实例 * @throws Exception