PreparingEnlistment.Prepared Methode

Definition

Gibt an, dass ein Commit für die Transaktion ausgeführt werden kann.

public:
 void Prepared();
public void Prepared ();
member this.Prepared : unit -> unit
Public Sub Prepared ()

Beispiele

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

Hinweise

In der ersten Phase (Vorbereiten) eines zweistufigen Commits ruft ein Ressourcenmanager, der die Prepare Methode der IEnlistmentNotification Schnittstelle implementiert, diese Methode auf, um anzugeben, dass die Transaktion verpflichtet werden kann.

Der Ressourcenmanager kann die Done Methode jederzeit aufrufen, bevor er diese Methode aufgerufen hat. Dadurch wird die Einlistung eine schreibgeschützte Abstimmung abgegeben, d. h., dass sie sich für die Transaktion einsetzt, aber nicht das endgültige Ergebnis erhalten muss.

Sobald diese Methode von einer Liste aufgerufen wird und bevor er zurückgibt, ist es möglich, dass ein anderer Thread oder dieser gleiche Thread einen Aufruf in die gleiche Enlistment-Methode vornehmen könnte, z Rollback . B. zum Ausführen eines Rollbacks. Dies kann zu einer Deadlock-Situation führen, wenn die Ressourcen-Manager-Implementierung keine Ressourcensperren veröffentlicht, bis nach dieser Methode zurückgegeben wird.

Gilt für