Transaction event type questions

A couple of quick questions about transaction events:

What is the difference between a ResourceTransactionXEvent and a TransactionXEvent?

What is the sequence of events for a transaction? What is the difference between begin and start? etc…

Begin
Close
Commit
Complete
Data
Join
Prepare
Rollback
Start

What are the different change types that can be registered. The example lists IndexChange. I was wondering what other types are there? I’m just trying to get a feel for what is possible. Thanks.

Hi Zach,

ResourceTransactionXEvents are child events spawned from TransactionXEvents.

Begin is used to signify the beginning of the transaction itself, while Start signals the beginning of a commit or rollback (versus the Commit/Rollback events, which signify the end of the process).

IndexChange is pretty much it. It has 4 enum/types: Add, Remove, ClearContext, ClearAll. The only other ones I can find appear to be internal to ICV.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.