liurunyu
2024-09-02 dc28ad88d48bfaf3f3de3bcaaac56979f8c136b7
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