Administrator
2024-08-03 cc956d4366d31f0cdd97dcb851a880cbd7660d0f
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