This mainly refers to the amount of data transferred per call. For example, if you want to get a dataset from a server, instead of a query
GetRecord(1);
GetRecord(2);
GetRecord(3);
GetRecord(4);
you will create a batch method like
GetRecords(1,4);
The idea is that the first design includes four batches of overhead data, but the second only one.
source
share