CompensatorOptions Enum
Definition
Specifies flags that control which phases of transaction completion should be received by the Compensating Resource Manager (CRM) Compensator, and whether recovery should fail if questionable transactions remain after recovery has been attempted.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
public enum class CompensatorOptions
[System.Flags]
[System.Serializable]
public enum CompensatorOptions
type CompensatorOptions =
Public Enum CompensatorOptions
- Inheritance
- Attributes
Fields
AbortPhase | 4 | Represents the abort phase. |
AllPhases | 7 | Represents all phases. |
CommitPhase | 2 | Represents the commit phase. |
FailIfInDoubtsRemain | 16 | Fails if in-doubt transactions remain after recovery has been attempted. |
PreparePhase | 1 | Represents the prepare phase. |
Examples
The following code example demonstrates the use of this enumeration.
// Create a new clerk using the AccountCompensator class.
Clerk^ clerk = gcnew Clerk(AccountCompensator::typeid,
"An account transaction compensator", CompensatorOptions::AllPhases);
// Create a new clerk using the AccountCompensator class.
Clerk clerk = new Clerk(typeof(AccountCompensator),
"An account transaction compensator", CompensatorOptions.AllPhases);
' Create a new clerk using the AccountCompensator class.
Dim clerk As New Clerk(GetType(AccountCompensator), "An account transaction compensator", CompensatorOptions.AllPhases)