CompensatorOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 supports a bitwise combination of its member values.
public enum class CompensatorOptions
[System.Flags]
[System.Serializable]
public enum CompensatorOptions
[<System.Flags>]
[<System.Serializable>]
type CompensatorOptions =
Public Enum CompensatorOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
PreparePhase | 1 | Represents the prepare phase. |
CommitPhase | 2 | Represents the commit phase. |
AbortPhase | 4 | Represents the abort phase. |
AllPhases | 7 | Represents all phases. |
FailIfInDoubtsRemain | 16 | Fails if in-doubt transactions remain after recovery has been attempted. |
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)