Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 373 Bytes

batch.concat.md

File metadata and controls

21 lines (15 loc) · 373 Bytes

Batch.concat

The concat function is used to concatenate the batch result to another.

Sample

var batch = new Batch();
var batch1 = new Batch();
batch.concat(batch1);

API

Calling Returning
batch. concat ( batch ) Batch
Parameters Type Description
batch Batch The sub-batch result.