1

我正在尝试创建一个 System.EnterpriseServices.ServicedComponent 以参与分布式事务。我的主要方法如下所示:

public void DoSomething()
{
    try
    {
      // do something useful

      // vote for commit

      if (ContextUtil.IsInTransaction)
          ContextUtil.MyTransactionVote = TransactionVote.Commit;
    }

    catch
    {
      // or shoud I use ContextUtil.SetAbort() instead?

      if (ContextUtil.IsInTransaction)
          ContextUtil.MyTransactionVote = TransactionVote.Abort;

      throw;
    }
}

我要做的是检测分布式事务是否已中止(或回滚),然后继续回滚我的更改。例如,我可能在磁盘上创建了一个文件,或者做了一些需要撤消的副作用。

我试图处理 SystemTransaction.TransactionCompleted 事件或在 Dispose() 方法中检查 SystemTransaction 的状态但没有成功。

我理解这类似于“补偿”而不是“交易”。

我正在尝试做的事情是否有意义?

4

2 回答 2

1

除非您需要,否则我建议不要以这种方式管理交易。

如果您希望您的操作在链中涉及的任何其他操作失败时投票中止,或者如果一切正常则投票提交;只需在方法声明的上方放置一个[AutoComplete]属性(请参阅本文的备注部分)。

这样,当前事务将被中止,以防出现异常,否则将自动完成。

考虑下面的代码(这可能是一个典型的服务组件类):

using System.EnterpriseServices;

// Description of this serviced component
[Description("This is dummy serviced component")]
public MyServicedComponent : ServicedComponent, IMyServiceProvider
{
    [AutoComplete]
    public DoSomething()
    {
        try {
            OtherServicedComponent component = new OtherServicedComponent()
            component.DoSomethingElse();

            // All the other invocations involved in the current transaction
            // went fine... let's servicedcomponet vote for commit automatically
            // due to [AutoComplete] attribute
        }
        catch (Exception e)
        {
            // Log the failure and let the exception go
            throw e;
        }
    }
}
于 2012-02-10T23:49:52.503 回答
0

回答我自己的问题,这也可以通过从System.Transactions.IEnlistmentNotification派生 ServicedComponent 来实现。

于 2011-02-28T13:33:32.887 回答