Hi,
Llblgen pro 5.7.1RTM
Adapter
I have jobs which track the progress of it's actions. These are mostly long running processes which post their (progress) state to the job. The job itself can be monitored and has info about start and end time, state, overall progress and of sub jobs.
Now I also need progress of the async commit of transactions. These can contain many inserts, updates and deletes in one transaction, and can last some minutes. I mainly use Entities which are tracked in a UnitOfWork2 or DataScope. And only sometimes plain Sql, but tracking these are only nice to have.
What options do I have to track the progression of the saves in the commit?
Thanks!