wuzeyu
2024-08-26 e10c9e150cef3096b295e6d9a3160862f4f0128d
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