• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Transactions.Enlistment类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中System.Transactions.Enlistment的典型用法代码示例。如果您正苦于以下问题:C# Enlistment类的具体用法?C# Enlistment怎么用?C# Enlistment使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Enlistment类属于System.Transactions命名空间,在下文中一共展示了Enlistment类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: Commit

 public void Commit(Enlistment enlistment)
 {
     try
     {
         assertNotDisposed();
         logger.DebugFormat("Committing enlistment with id: {0}", Id);
         queueStorage.Global(actions =>
         {
             actions.RemoveReversalsMoveCompletedMessagesAndFinishSubQueueMove(Id);
             actions.MarkAsReadyToSend(Id);
             actions.DeleteRecoveryInformation(Id);
             actions.Commit();
         });
         enlistment.Done();
         logger.DebugFormat("Commited enlistment with id: {0}", Id);
     }
     catch (Exception e)
     {
         logger.Warn("Failed to commit enlistment " + Id, e);
         throw;
     }
     finally
     {
         onCompelete();
     }
 }
开发者ID:endeavour,项目名称:rhino-tools,代码行数:26,代码来源:TransactionEnlistment.cs


示例2: Rollback

 public void Rollback(Enlistment enlistment)
 {
     container.Rollback();
     container.Ext().Refresh(oldItem, int.MaxValue);
     oldItem = null;
     container = null;
 }
开发者ID:JoeyCyril,项目名称:BoC,代码行数:7,代码来源:Db4oEnlist.cs


示例3: Commit

			public void Commit(Enlistment enlistment)
			{
				if (_ThrowIt)
					Assert.Fail("commit is never called if prepare failed");

				enlistment.Done();
			}
开发者ID:hammett,项目名称:Castle.Transactions,代码行数:7,代码来源:WhoStoleMyTransaction_TestCase.cs


示例4: InDoubt

 public void InDoubt(Enlistment enlistment)
 {
     log.Warn("transaction in doubt {0}, messages {1}", TransactionId, this.Messages.Count);
     if (_onrollback != null) _onrollback(this);
     enlistment.Done();
     TransactionOpen = false;
 }
开发者ID:BrettBailey,项目名称:nginn-messagebus,代码行数:7,代码来源:MessageBatchingRM.cs


示例5: Commit

		public void Commit(Enlistment enlistment)
		{
			if (_transaction != null && !_transaction.IsUpdated)
			{
				_transaction.Commit();
				_transaction = null;

				if (Completed != null)
				{
					Completed(this, new EventArgs());
				}

				if (_connection != null)
				{
					if (!_connection.Options.Pooling && (_connection.OwningConnection == null || _connection.OwningConnection.IsClosed))
					{
						_connection.Disconnect();
					}
				}
				_connection = null;
				_systemTransaction = null;

				// Declare done on the enlistment
				enlistment.Done();
			}
		}
开发者ID:nakagami,项目名称:FirebirdSql.Data.FirebirdClient,代码行数:26,代码来源:FbEnlistmentNotification.cs


示例6: StringBuilder

 void IEnlistmentNotification.Commit(Enlistment enlistment)
 {
     this.m_Value = new StringBuilder(this.m_TemporaryValue.ToString());
     this.m_TemporaryValue = null;
     this.enlistedTransaction = null;
     enlistment.Done();
 }
开发者ID:nickchal,项目名称:pash,代码行数:7,代码来源:TransactedString.cs


示例7: Commit

 /// <summary>
 /// Performs necessary commit actions, clearing the current <see cref="TransactionContext"/>
 /// </summary>
 public void Commit(Enlistment enlistment)
 {
     BeforeCommit();
     DoCommit();
     TransactionContext.Clear();
     enlistment.Done();
 }
开发者ID:plillevold,项目名称:Rebus,代码行数:10,代码来源:AmbientTransactionContext.cs


示例8: Commit

        public void Commit(Enlistment enlistment)
        {
            if (this.transaction != null && !this.transaction.IsUpdated)
            {
                this.transaction.Commit();
                this.transaction = null;

                if (this.Completed != null)
                {
                    this.Completed(this, new EventArgs());
                }

                if (this.connection != null)
                {
                    if (!this.connection.Pooled && (this.connection.OwningConnection == null || this.connection.OwningConnection.IsClosed))
                    {
                        this.connection.Disconnect();
                    }
                }
                this.connection         = null;
                this.systemTransaction  = null;

                // Declare done on the enlistment
                enlistment.Done();
            }
        }
开发者ID:antgraf,项目名称:Embedded-DB-.Net-Performance-Test,代码行数:26,代码来源:FbEnlistmentNotification.cs


示例9: Commit

		public override void Commit(Enlistment enlistment)
		{
			if (_ThrowOnCommit)
				throw new Exception("Simulated commit error");

			base.Commit(enlistment);
		}
开发者ID:bittercoder,项目名称:Windsor,代码行数:7,代码来源:ThrowsExceptionResource.cs


示例10: Commit

 public void Commit(Enlistment enlistment)
 {
     log.Debug("Commit {0}, Messages: {1}", TransactionId, Messages.Count);
     if (_oncommit != null) _oncommit(this);
     enlistment.Done();
     TransactionOpen = false;
 }
开发者ID:BrettBailey,项目名称:nginn-messagebus,代码行数:7,代码来源:MessageBatchingRM.cs


示例11: Rollback

 public void Rollback(Enlistment enlistment)
 {
     enlistment.Done();
     this.notification.Aborted(0, false, 0, 0);
     Marshal.ReleaseComObject(this.notification);
     this.notification = null;
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:7,代码来源:VoterBallot.cs


示例12: StringBuilder

 /// <summary>
 /// Make the transacted changes permanent.
 /// </summary>
 void IEnlistmentNotification.Commit(Enlistment enlistment)
 {
     _value = new StringBuilder(_temporaryValue.ToString());
     _temporaryValue = null;
     _enlistedTransaction = null;
     enlistment.Done();
 }
开发者ID:40a,项目名称:PowerShell,代码行数:10,代码来源:TransactedString.cs


示例13: InDoubt

 public void InDoubt(Enlistment enlistment)
 {
     enlistment.Done();
     this.notification.InDoubt();
     Marshal.ReleaseComObject(this.notification);
     this.notification = null;
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:7,代码来源:VoterBallot.cs


示例14: Commit

 public void Commit(Enlistment enlistment)
 {
     enlistment.Done();
     this.notification.Committed(false, 0, 0);
     Marshal.ReleaseComObject(this.notification);
     this.notification = null;
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:7,代码来源:VoterBallot.cs


示例15: ApplicationException

		void IEnlistmentNotification.Commit(Enlistment enlistment)
		{
			if (_ThrowIt && ++_ErrorCount < 2)
				throw new ApplicationException("simulating resource failure");

			enlistment.Done();
		}
开发者ID:carcer,项目名称:Castle.Facilities.NHibernate,代码行数:7,代码来源:ThrowingResource.cs


示例16: Rollback

		public override void Rollback(Enlistment enlistment)
		{
			if (_ThrowOnRollback)
				throw new Exception("Simulated rollback error");

			base.Rollback(enlistment);
		}
开发者ID:bittercoder,项目名称:Windsor,代码行数:7,代码来源:ThrowsExceptionResource.cs


示例17: Rollback

 public void Rollback(Enlistment enlistment)
 {
     foreach (var x in _rollbackCommands)
     {
         x();
     }
     enlistment.Done();
 }
开发者ID:JordanJones,项目名称:TransactionProofOfConcept,代码行数:8,代码来源:NoSqlResourceManager.cs


示例18: InDoubt

        public void InDoubt( Enlistment enlistment )
        {
            Status = TxfmStatus.InInDoubt;

            enlistment.Done();

            Status = TxfmStatus.InTransaction;
        }
开发者ID:dbremner,项目名称:TransactionalFileManager,代码行数:8,代码来源:TxfmEnlistment.cs


示例19: InDoubt

 public void InDoubt(Enlistment enlistment)
 {
     lock (_sharedLock)
     {
         if (InDoubtAction != null) InDoubtAction();
     }
     enlistment.Done();
 }
开发者ID:PaulStovell,项目名称:bindable,代码行数:8,代码来源:TransactionStep.cs


示例20: Commit

 public void Commit(Enlistment enlistment)
 {
     #if DEBUG
     System.Diagnostics.Trace.WriteLine("NuoDbTransaction::IEnlistmentNotification::Commit()");
     #endif
     Commit();
     enlistment.Done();
 }
开发者ID:helluvamatt,项目名称:nuodb-dotnet,代码行数:8,代码来源:NuoDbTransaction.cs



注:本文中的System.Transactions.Enlistment类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Transactions.InternalEnlistment类代码示例发布时间:2022-05-26
下一篇:
C# Transactions.CommittableTransaction类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap