Hi,
Lets say I have 10 transactions in a list where each batch consist of 5 transactions.
If all the first 5 transactions is complete (batch 1), then only the next batch is allowed to proceed.
Each transaction represents a
thread in order to improve the performance as previously the list of transactions is processed one by one.
My question is when join() is used, isn't it the same concept as processing the transactions one by one?
Please advice. Thanks.