BulkInsertParallelRequest constructor

BulkInsertParallelRequest(
  1. int requestId,
  2. int poolId,
  3. String table,
  4. List<String> columns,
  5. Uint8List dataBuffer,
  6. int parallelism,
)

Implementation

BulkInsertParallelRequest(
  int requestId,
  this.poolId,
  this.table,
  this.columns,
  Uint8List dataBuffer,
  this.parallelism,
)   : _dataBuffer = dataBuffer,
      _transferableData = null,
      super(requestId, RequestType.bulkInsertParallel);