BSA_Vote
The BSA_Vote enumeration describes whether or not the transaction is to be committed. It is defined as follows:
typedef enum {
BSA_Vote_COMMIT = 1,
BSA_Vote_ABORT = 2
NBBSA_Vote_CONDITIONAL = 99
} BSA_Vote;The meaning of the enumeration values is as follows:
Table: BSA_Vote Enumeration Values
Constant | Value | Definition |
|---|---|---|
COMMIT | 1 | The transaction is to be committed. |
ABORT | 2 | The transaction is to be aborted. |
CONDITIONAL | 99 | The transaction is to be committed, report only conditional success. |