我正在尝试创建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的状态但没有成功。
我知道这类似于“补偿”而不是“交易”。
我想做的事情是否有意义?
答案 0 :(得分:1)
我建议不要以这种方式管理交易,除非你需要它。
如果您希望您的操作在链中涉及的任何其他操作失败时中止投票,或者如果一切正常则投票提交;只需在方法声明的上方放置[AutoComplete]
atttribute(请参阅此article处的备注部分)。
通过这种方式,当前的交易将被中止,以防异常升起,否则将自动完成。
考虑下面的代码(这可能是典型的服务组件类):
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;
}
}
}
答案 1 :(得分:0)
回答我自己的问题,这也可以通过从System.Transactions.IEnlistmentNotification派生ServicedComponent来实现。