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 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
CompensatorOptions
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)

Applies to