private boolean hasRoomFor()

in src/main/java/com/aliyun/openservices/aliyun/log/producer/internals/ProducerBatch.java [160:163]


  private boolean hasRoomFor(int sizeInBytes, int count) {
    return curBatchSizeInBytes + sizeInBytes <= ProducerConfig.MAX_BATCH_SIZE_IN_BYTES
        && curBatchCount + count <= ProducerConfig.MAX_BATCH_COUNT;
  }