Hi We process a lot of transactions and aggregating them with a time threshold. When the aggregation is flushed we receive a List<String> containing several thousand items in-memory and starts processing them further.
In order to secure the process how is it done normaly when processing a list in memory? How can we replay or start from where we left off in case of Exception, power outage or any other stopping? We consume from a JMS, aggregate a List<String> and then after one hour we process the List of Strings⦠thx /M