public BatchHandler()

in src/main/java/com/aliyun/openservices/aliyun/log/producer/internals/BatchHandler.java [23:33]


  public BatchHandler(
      String name,
      BlockingQueue<ProducerBatch> batches,
      AtomicInteger batchCount,
      Semaphore memoryController) {
    super(name, true);
    this.batches = batches;
    this.batchCount = batchCount;
    this.memoryController = memoryController;
    this.closed = false;
  }