wuzeyu
2024-09-12 7998e8c1442f95f30d366b6003b480c9a59712a9
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