The JSON-RPC 2.0 specification support batch request natively. Which enable user send several request at the same time. The Client MAY send an Array filled with Request objects, The Server should respond with an Array containing the corresponding Response objects, after all of the batch Request objects have been processed.
One thing to note is execute method will not clear previous added request, so if you add some request later and then call execute method again, all request will send one time. BatchRequest provide one method clear to remove all request previous added.
Batch Send Transaction
To batch send transaction, now developer could use SDK's helper to build a rawTransaction and add it to bacher's request array.