将TransactionScope传递给Parallel.Invoke创建的任务

时间:2011-09-02 02:51:20

标签: c# .net transactions transactionscope task-parallel-library

我希望并行运行的TxJobs从此父事务创建范围。我该如何工作?

using (var tx = TransactionScope()) {
    Parallel.Invoke(TxJob1, TxJob2) ;
    tx.Complete();
}

我通过了DependentClone

using (var tx = new TransactionScope()) {
    var dtx1 = Transaction.Current.DependentClone(
        DependentCloneOption.RollbackIfNotComplete) ;
    var dtx2 = Transaction.Current.DependentClone(
        DependentCloneOption.RollbackIfNotComplete) ;
    Parallel.Invoke(() => TxJob1(dtx1), () => TxJob2(dtx2)) ;
    tx.Complete();
}

TxJob1TxJob2方法中,如果我只是在Complete上调用DependentClones,它就会有效。但是,如果我从克隆创建范围,我会得到TransactionAbortedException

void TxJob1(Transaction dt) {
    using (var tx = new TransactionScope(dt)) {
        Console.WriteLine(dtx.TransactionInformation.LocalIdentifier);
        tx.Complete();
    }
}

主要方法中的Complete调用引发了异常,而不是TxJobs。为什么这会失败?

[edit]如果我在TxJobs中的DependentTransaction上显式调用Complete,那么它可以工作。如果我没有在TxJobs中的新TransactionScope上调用Complete(触发回滚),则父事务失败。看起来我必须在两个Transaction对象上调用Complete。

1 个答案:

答案 0 :(得分:2)

看起来我必须在依赖克隆和TransactionScope上调用Complete。 MS在sample code中也做同样的事情。