Adds new functions to handle multiple BatchWriteItem or BatchGetItem requests:
follows the same pattern from batchGetItemRequests or batchWriteItemRequests where you
dyno.batchWriteAll(params).sendAll(10, callback);
the sendAll implementation retries unprocessed items until there are none left.
the callback from sendAll is given a single err object (even if multiple requests errored), and a single response object (or null if all requests errored). If any requests were successful, the response object is an aggregation of all the successful responses.
Adds new functions to handle multiple BatchWriteItem or BatchGetItem requests:
follows the same pattern from
batchGetItemRequests
orbatchWriteItemRequests
where yousendAll
implementation retries unprocessed items until there are none left.sendAll
is given a single err object (even if multiple requests errored), and a single response object (or null if all requests errored). If any requests were successful, the response object is an aggregation of all the successful responses.fixes #116