DependentTransactionとは? わかりやすく解説

DependentTransaction イベント


パブリック イベントパブリック イベント

  名前 説明
パブリック イベント TransactionCompleted  トランザクション完了したことを示します。 ( Transaction から継承されます。)
参照参照

関連項目

DependentTransaction クラス
System.Transactions 名前空間

その他の技術情報

DependentTransaction を使用した同時実行管理

DependentTransaction クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

トランザクション作業に関してアプリケーション停止するまで、トランザクションコミットできないようにする、トランザクション複製記述します。このクラス継承できません。

名前空間: System.Transactions
アセンブリ: System.Transactions (system.transactions.dll 内)
構文構文

<SerializableAttribute> _
Public NotInheritable Class
 DependentTransaction
    Inherits Transaction
Dim instance As DependentTransaction
[SerializableAttribute] 
public sealed class DependentTransaction :
 Transaction
[SerializableAttribute] 
public ref class DependentTransaction sealed
 : public Transaction
/** @attribute SerializableAttribute() */ 
public final class DependentTransaction extends
 Transaction
SerializableAttribute 
public final class DependentTransaction extends
 Transaction
解説解説
使用例使用例

依存トランザクション作成する方法次の例に示します

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
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();
}
継承階層継承階層
System.Object
   System.Transactions.Transaction
    System.Transactions.DependentTransaction
スレッド セーフスレッド セーフ

この型は、マルチスレッド操作に対して安全です。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

DependentTransaction プロパティ


DependentTransaction メソッド


パブリック メソッドパブリック メソッド

( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Clone  トランザクション複製作成します。 ( Transaction から継承されます。)
パブリック メソッド Complete 依存トランザクション完了しようとします
パブリック メソッド DependentClone  トランザクション依存する複製作成します。 ( Transaction から継承されます。)
パブリック メソッド Dispose  オブジェクトによって保持されているリソース解放します。 ( Transaction から継承されます。)
パブリック メソッド EnlistDurable  オーバーロードされますトランザクション参加する永続的リソース マネージャ参加させます。 ( Transaction から継承されます。)
パブリック メソッド EnlistPromotableSinglePhase  PSPE (Promotable Single Phase Enlistment) を使用して内部トランザクションを持つリソース マネージャ参加させます。 ( Transaction から継承されます。)
パブリック メソッド EnlistVolatile  オーバーロードされますトランザクション参加する揮発性リソース マネージャ参加させます。 ( Transaction から継承されます。)
パブリック メソッド Equals  オーバーロードされます。 このトランザクション指定したオブジェクト等しかどうか判断します。 ( Transaction から継承されます。)
パブリック メソッド GetHashCode  このインスタンスハッシュ コード返します。 ( Transaction から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド op_Equality  指定した 2 つTransaction インスタンス等価であるかどうかテストします。 ( Transaction から継承されます。)
パブリック メソッド op_Inequality  2 つTransaction インスタンス等しくないかどうかを示す値を返します。 ( Transaction から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド Rollback  オーバーロードされますトランザクションロールバック (中止) します。 ( Transaction から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DependentTransaction クラス
System.Transactions 名前空間

その他の技術情報

DependentTransaction を使用した同時実行管理

DependentTransaction メンバ

トランザクション作業に関してアプリケーション停止するまで、トランザクションコミットできないようにする、トランザクション複製記述します。このクラス継承できません。

DependentTransaction データ型公開されるメンバを以下の表に示します


パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Clone  トランザクション複製作成します。 (Transaction から継承されます。)
パブリック メソッド Complete 依存トランザクション完了しようとします
パブリック メソッド DependentClone  トランザクション依存する複製作成します。 (Transaction から継承されます。)
パブリック メソッド Dispose  オブジェクトによって保持されているリソース解放します。 (Transaction から継承されます。)
パブリック メソッド EnlistDurable  オーバーロードされますトランザクション参加する永続的リソース マネージャ参加させます。 (Transaction から継承されます。)
パブリック メソッド EnlistPromotableSinglePhase  PSPE (Promotable Single Phase Enlistment) を使用して内部トランザクションを持つリソース マネージャ参加させます。 (Transaction から継承されます。)
パブリック メソッド EnlistVolatile  オーバーロードされますトランザクション参加する揮発性リソース マネージャ参加させます。 (Transaction から継承されます。)
パブリック メソッド Equals  オーバーロードされます。 このトランザクション指定したオブジェクト等しかどうか判断します。 (Transaction から継承されます。)
パブリック メソッド GetHashCode  このインスタンスハッシュ コード返します。 (Transaction から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド op_Equality  指定した 2 つTransaction インスタンス等価であるかどうかテストします。 (Transaction から継承されます。)
パブリック メソッド op_Inequality  2 つTransaction インスタンス等しくないかどうかを示す値を返します。 (Transaction から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド Rollback  オーバーロードされますトランザクションロールバック (中止) します。 (Transaction から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
プロテクト メソッドプロテクト メソッド
パブリック イベントパブリック イベント
  名前 説明
パブリック イベント TransactionCompleted  トランザクション完了したことを示します。(Transaction から継承されます。)
参照参照

関連項目

DependentTransaction クラス
System.Transactions 名前空間

その他の技術情報

DependentTransaction を使用した同時実行管理



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「DependentTransaction」の関連用語

DependentTransactionのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



DependentTransactionのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS