Transaction.DependentClone(DependentCloneOption) Metoda

Definice

Vytvoří závislý klon transakce.

public:
 System::Transactions::DependentTransaction ^ DependentClone(System::Transactions::DependentCloneOption cloneOption);
public:
 System::Transactions::DependentTransaction ^ DependentClone(System::Transactions::DependentCloneOption option);
public System.Transactions.DependentTransaction DependentClone (System.Transactions.DependentCloneOption cloneOption);
public System.Transactions.DependentTransaction DependentClone (System.Transactions.DependentCloneOption option);
member this.DependentClone : System.Transactions.DependentCloneOption -> System.Transactions.DependentTransaction
member this.DependentClone : System.Transactions.DependentCloneOption -> System.Transactions.DependentTransaction
Public Function DependentClone (cloneOption As DependentCloneOption) As DependentTransaction
Public Function DependentClone (option As DependentCloneOption) As DependentTransaction

Parametry

cloneOptionoption
DependentCloneOption

A DependentCloneOption , která řídí, jaký druh závislé transakce se má vytvořit.

Návraty

DependentTransaction

A DependentTransaction , který představuje závislý klon.

Příklady

Následující příklad ukazuje, jak vytvořit závislé transakce.

static void Main(string[] args)
{
    try
    {
        using (TransactionScope scope = new TransactionScope())
        {
            // Perform transactional work here.

            //Queue work item
            ThreadPool.QueueUserWorkItem(new WaitCallback(WorkerThread), Transaction.Current.DependentClone(DependentCloneOption.BlockCommitUntilComplete));

            //Display transaction information
            Console.WriteLine("Transaction information:");
            Console.WriteLine("ID:             {0}", Transaction.Current.TransactionInformation.LocalIdentifier);
            Console.WriteLine("status:         {0}", Transaction.Current.TransactionInformation.Status);
            Console.WriteLine("isolationlevel: {0}", Transaction.Current.IsolationLevel);

            //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'))
                {
                    //Call complete on the scope
                    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;
    }
}

private static void WorkerThread(object transaction)
{
    //Create a DependentTransaction from the object passed to the WorkerThread
    DependentTransaction dTx = (DependentTransaction)transaction;

    //Sleep for 1 second to force the worker thread to delay
    Thread.Sleep(1000);

    //Pass the DependentTransaction to the scope, so that work done in the scope becomes part of the transaction passed to the worker thread
    using (TransactionScope ts = new TransactionScope(dTx))
    {
        //Perform transactional work here.

        //Call complete on the transaction scope
        ts.Complete();
    }

    //Call complete on the dependent transaction
    dTx.Complete();
}
Public Shared Sub Main()
    Try
        Using scope As TransactionScope = New TransactionScope()

            'Perform transactional work here.

            'Queue work item
            ThreadPool.QueueUserWorkItem(AddressOf WorkerThread, Transaction.Current.DependentClone(DependentCloneOption.BlockCommitUntilComplete))

            'Display transaction information
            Console.WriteLine("Transaction information:")
            Console.WriteLine("ID:             {0}", Transaction.Current.TransactionInformation.LocalIdentifier)
            Console.WriteLine("status:         {0}", Transaction.Current.TransactionInformation.Status)
            Console.WriteLine("isolationlevel: {0}", Transaction.Current.IsolationLevel)

            '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

Public Shared Sub WorkerThread(ByVal myTransaction As Object)

    'Create a DependentTransaction from the object passed to the WorkerThread
    Dim dTx As DependentTransaction
    dTx = CType(myTransaction, DependentTransaction)

    'Sleep for 1 second to force the worker thread to delay
    Thread.Sleep(1000)

    'Pass the DependentTransaction to the scope, so that work done in the scope becomes part of the transaction passed to the worker thread
    Using ts As TransactionScope = New TransactionScope(dTx)
        'Perform transactional work here.

        'Call complete on the transaction scope
        ts.Complete()
    End Using

    'Call complete on the dependent transaction
    dTx.Complete()
End Sub

Poznámky

Závislá transakce je transakce, jejíž výsledek závisí na výsledku transakce, ze které byla naklonována.

Parametr cloneoption určuje, jaký druh závislé transakce se má vytvořit. Pokud je závislá transakce vytvořena s BlockCommitUntilComplete, blokuje proces potvrzení transakce do časového limitu transakce nebo Complete je volána na DependentTransaction. Pokud je vytvořen s RollbackIfNotComplete, automaticky přeruší transakci, pokud Commit je volána před Complete je volána DependentTransactionna .

Platí pro

Viz také