Enlistment クラス

定義

トランザクションの最終フェーズにおいて、トランザクションに参加している参加要素とトランザクション マネージャーの間の通信を容易にします。

public ref class Enlistment
public class Enlistment
type Enlistment = class
Public Class Enlistment
継承
Enlistment
派生

次の例は、 インターフェイスの IEnlistmentNotification 実装と、 メソッドを呼び出すタイミングを Done 示しています。

class myEnlistmentClass : IEnlistmentNotification
{
    public void Prepare(PreparingEnlistment preparingEnlistment)
    {
        Console.WriteLine("Prepare notification received");

        //Perform transactional work

        //If work finished correctly, reply prepared
        preparingEnlistment.Prepared();

        // otherwise, do a ForceRollback
        preparingEnlistment.ForceRollback();
    }

    public void Commit(Enlistment enlistment)
    {
        Console.WriteLine("Commit notification received");

        //Do any work necessary when commit notification is received

        //Declare done on the enlistment
        enlistment.Done();
    }

    public void Rollback(Enlistment enlistment)
    {
        Console.WriteLine("Rollback notification received");

        //Do any work necessary when rollback notification is received

        //Declare done on the enlistment
        enlistment.Done();
    }

    public void InDoubt(Enlistment enlistment)
    {
        Console.WriteLine("In doubt notification received");

        //Do any work necessary when indout notification is received
        
        //Declare done on the enlistment
        enlistment.Done();
    }
}
Public Class EnlistmentClass
    Implements IEnlistmentNotification

    Public Sub Prepare(ByVal myPreparingEnlistment As PreparingEnlistment) Implements System.Transactions.IEnlistmentNotification.Prepare
        Console.WriteLine("Prepare notification received")

        'Perform transactional work

        'If work finished correctly, reply with prepared
        myPreparingEnlistment.Prepared()
    End Sub

    Public Sub Commit(ByVal myEnlistment As Enlistment) Implements System.Transactions.IEnlistmentNotification.Commit
        Console.WriteLine("Commit notification received")

        'Do any work necessary when commit notification is received

        'Declare done on the enlistment
        myEnlistment.Done()
    End Sub

    Public Sub Rollback(ByVal myEnlistment As Enlistment) Implements System.Transactions.IEnlistmentNotification.Rollback
        Console.WriteLine("Rollback notification received")

        'Do any work necessary when rollback notification is received

        'Declare done on the enlistment
        myEnlistment.Done()
    End Sub

    Public Sub InDoubt(ByVal myEnlistment As Enlistment) Implements System.Transactions.IEnlistmentNotification.InDoubt
        Console.WriteLine("In doubt notification received")

        'Do any work necessary when indout notification is received

        'Declare done on the enlistment
        myEnlistment.Done()
    End Sub
End Class

注釈

トランザクションにEnlistVolatile参加要素をTransaction参加させるために オブジェクトの メソッドと EnlistDurable メソッドが呼び出されると、参加を記述するこのオブジェクトが返されます。

トランザクション コミットの最終フェーズ中に、トランザクション マネージャーは、トランザクションに参加しているインターフェイスを実装する IEnlistmentNotification リソース マネージャーにこのオブジェクトを渡します。 具体的には、トランザクション マネージャーは、トランザクションの Commit コミットまたはロールバックを決定したかどうかに応じて、参加者の メソッドまたは Rollback メソッドを呼び出します。 参加者は、このオブジェクトの メソッドを Done 呼び出して、トランザクション マネージャーに作業が完了したことを知らせる必要があります。

参加リストは、準備フェーズで を Done 呼び出す前に、いつでも メソッドを呼び出 Prepared すことができます。 これにより、参加リストは読み取り専用の投票を行います。つまり、トランザクションに対するコミットに投票しますが、最終的な結果を受け取る必要はありません。 メソッドが Done 呼び出された後、参加している参加者はトランザクション マネージャーからそれ以上の通知を受け取らなくなることに注意してください。

メソッド

Done()

トランザクション参加要素が作業を完了したことを示します。

Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

適用対象

スレッド セーフ

この型はスレッド セーフです。

こちらもご覧ください