IEnlistmentNotification Interface
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Descreve uma interface que um gerenciador de recursos deve implementar para fornecer dois retornos de chamada de notificação de confirmação de fase para o gerenciador de transação após a inscrição para a participação.
public interface class IEnlistmentNotification
public interface IEnlistmentNotification
type IEnlistmentNotification = interface
Public Interface IEnlistmentNotification
- Derivado
Exemplos
O exemplo a seguir mostra uma implementação dessa interface, bem como a inscrição do objeto como participante de uma transação usando o EnlistVolatile método.
static void Main(string[] args)
{
try
{
using (TransactionScope scope = new TransactionScope())
{
//Create an enlistment object
myEnlistmentClass myElistment = new myEnlistmentClass();
//Enlist on the current transaction with the enlistment object
Transaction.Current.EnlistVolatile(myElistment, EnlistmentOptions.None);
//Perform transactional work here.
//Call complete on the TransactionScope based on console input
ConsoleKeyInfo c;
while(true)
{
Console.Write("Complete the transaction scope? [Y|N] ");
c = Console.ReadKey();
Console.WriteLine();
if ((c.KeyChar == 'Y') || (c.KeyChar == 'y'))
{
scope.Complete();
break;
}
else if ((c.KeyChar == 'N') || (c.KeyChar == 'n'))
{
break;
}
}
}
}
catch (System.Transactions.TransactionException ex)
{
Console.WriteLine(ex);
}
catch
{
Console.WriteLine("Cannot complete transaction");
throw;
}
}
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 Shared Sub Main()
Try
Using scope As TransactionScope = New TransactionScope()
'Create an enlistment object
Dim myEnlistmentClass As New EnlistmentClass
'Enlist on the current transaction with the enlistment object
Transaction.Current.EnlistVolatile(myEnlistmentClass, EnlistmentOptions.None)
'Perform transactional work here.
'Call complete on the TransactionScope based on console input
Dim c As ConsoleKeyInfo
While (True)
Console.Write("Complete the transaction scope? [Y|N] ")
c = Console.ReadKey()
Console.WriteLine()
If (c.KeyChar = "Y") Or (c.KeyChar = "y") Then
scope.Complete()
Exit While
ElseIf ((c.KeyChar = "N") Or (c.KeyChar = "n")) Then
Exit While
End If
End While
End Using
Catch ex As TransactionException
Console.WriteLine(ex)
Catch
Console.WriteLine("Cannot complete transaction")
Throw
End Try
End Sub
End Class
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
Comentários
Para que um gerenciador de recursos participe de uma transação, ele deve se inscrever na transação por meio do gerenciador de transações. O Transaction classe define um conjunto de métodos cujos nomes começam com Enlist
que fornecem essa funcionalidade. As diferentes Enlist
métodos correspondem aos diferentes tipos de inscrição que pode ter um Gerenciador de recursos.
Essa classe descreve uma interface que um gerenciador de recursos deve implementar para fornecer dois retornos de chamada de notificação de confirmação de fase para o gerenciador de transações ao se inscrever para participação. Para a IEnlistmentNotification implementação da interface de cada gerenciador de recursos, você deve alisá-la usando o EnlistVolatile método ou o EnlistDurable método da Transaction classe, dependendo se o recurso é volátil ou durável. Para obter mais informações sobre a inscrição e o 2PC, consulte a inscrição de recursos como participantes de uma transação e confirmação de uma transação em Single-Phase e em várias fases , respectivamente.
O gerenciador de transações notifica o objeto inscrito em fases diferentes do Protocolo de Confirmação de Duas Fases pelos métodos a seguir.
Método | Descrição |
---|---|
Prepare | Esse método de um objeto inscrito é usado como um retorno de chamada pelo Gerenciador de Transações durante a primeira fase de uma transação, quando o gerenciador de transações pergunta aos participantes se eles podem confirmar a transação. |
Commit | Esse método de um objeto inscrito é usado como um retorno de chamada pelo Gerenciador de Transações durante a segunda fase de uma transação se a transação for confirmada. |
Rollback | Esse método de um objeto inscrito é usado como um retorno de chamada pelo Gerenciador de Transações durante a segunda fase de uma transação se a transação for anulada (ou seja, revertida). |
InDoubt | Esse método de um objeto inscrito é usado como um retorno de chamada pelo Gerenciador de Transações durante a segunda fase de uma transação se a transação estiver em dúvida. |
Observação
Você deve estar ciente de que as notificações podem não ser enviadas sequencialmente ou em uma ordem específica.
Métodos
Commit(Enlistment) |
Notifica um objeto inscrito de que uma transação está sendo confirmada. |
InDoubt(Enlistment) |
Notifica um objeto inscrito de que o status de uma transação está duvidoso. |
Prepare(PreparingEnlistment) |
Notifica um objeto inscrito de que uma transação está sendo preparada para confirmação. |
Rollback(Enlistment) |
Notifica um objeto inscrito de que uma transação está sendo revertida (anulada). |