The concat
function is used to concatenate the batch result to another.
var batch = new Batch();
var batch1 = new Batch();
batch.concat(batch1);
Calling | Returning |
---|---|
batch. concat ( batch ) |
Batch |
Parameters | Type | Description |
---|---|---|
batch |
Batch |
The sub-batch result. |