Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / RunTime / Hosting / LocalTransaction.cs / 1305376 / LocalTransaction.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #region Using directives using System; using System.Diagnostics; using System.Transactions; using System.Data; using System.Data.Common; using System.Threading; #endregion namespace System.Workflow.Runtime.Hosting { ////// This class wraps a local transaction (DbTransaction) by implementing IPromotableSinglePhaseNotification: /// It instantiate a DbTransaction and never allows promotion to a DTC transaction. /// internal sealed class LocalTransaction : IPromotableSinglePhaseNotification { readonly DbTransaction transaction; System.Data.Common.DbConnection connection; ManualResetEvent handle; object syncRoot = new Object(); #region Constructor ////// Wraps a local transaction inside /// /// internal LocalTransaction(DbResourceAllocator dbHelper, ManualResetEvent handle) { if (null == handle) throw new ArgumentNullException("handle"); // Open a connection that specifically does not auto-enlist ("Enlist=false" in connection string) // to prevent auto-promotion of the transaction this.connection = dbHelper.OpenNewConnectionNoEnlist(); this.transaction = this.connection.BeginTransaction(); this.handle = handle; } #endregion Constructor #region Accessors public System.Data.Common.DbConnection Connection { get { return this.connection; } } public DbTransaction Transaction { get { return this.transaction; } } #endregion Accessors #region IPromotableSinglePhaseNotification Members public void Initialize() { } public void SinglePhaseCommit(SinglePhaseEnlistment en) { if (en == null) throw new ArgumentNullException("en"); // // Wait until IPendingWork members have completed (WinOE bugs 17580 and 13395) try { handle.WaitOne(); } catch (ObjectDisposedException) { // If an ObjectDisposedException is thrown because // the WaitHandle has already closed, nothing to worry // about. Move on. } lock (syncRoot) { try { this.transaction.Commit(); en.Committed(); } catch (Exception e) { en.Aborted(e); } finally { if ((null != connection) && (ConnectionState.Closed != connection.State)) { connection.Close(); connection = null; } } } } public void Rollback(SinglePhaseEnlistment en) { if (en == null) throw new ArgumentNullException("en"); // // Wait until IPendingWork members have completed (WinOE bugs 17580 and 13395) try { handle.WaitOne(); } catch (ObjectDisposedException) { // If an ObjectDisposedException is thrown because // the WaitHandle has already closed, nothing to worry // about. Move on. } // DbTransaction.Dispose will call Rollback if the DbTransaction is not Zombied. // Not safe to call DbTransaction.Rollback here as the the underlining // DbTransaction may have already been Rolled back lock (syncRoot) { if (null != transaction) transaction.Dispose(); if ((null != connection) && (ConnectionState.Closed != connection.State)) { connection.Close(); connection = null; } en.Aborted(); } } public byte[] Promote() { throw new TransactionPromotionException( ExecutionStringManager.PromotionNotSupported); } #endregion IPromotableSinglePhaseNotification Members } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #region Using directives using System; using System.Diagnostics; using System.Transactions; using System.Data; using System.Data.Common; using System.Threading; #endregion namespace System.Workflow.Runtime.Hosting { ////// This class wraps a local transaction (DbTransaction) by implementing IPromotableSinglePhaseNotification: /// It instantiate a DbTransaction and never allows promotion to a DTC transaction. /// internal sealed class LocalTransaction : IPromotableSinglePhaseNotification { readonly DbTransaction transaction; System.Data.Common.DbConnection connection; ManualResetEvent handle; object syncRoot = new Object(); #region Constructor ////// Wraps a local transaction inside /// /// internal LocalTransaction(DbResourceAllocator dbHelper, ManualResetEvent handle) { if (null == handle) throw new ArgumentNullException("handle"); // Open a connection that specifically does not auto-enlist ("Enlist=false" in connection string) // to prevent auto-promotion of the transaction this.connection = dbHelper.OpenNewConnectionNoEnlist(); this.transaction = this.connection.BeginTransaction(); this.handle = handle; } #endregion Constructor #region Accessors public System.Data.Common.DbConnection Connection { get { return this.connection; } } public DbTransaction Transaction { get { return this.transaction; } } #endregion Accessors #region IPromotableSinglePhaseNotification Members public void Initialize() { } public void SinglePhaseCommit(SinglePhaseEnlistment en) { if (en == null) throw new ArgumentNullException("en"); // // Wait until IPendingWork members have completed (WinOE bugs 17580 and 13395) try { handle.WaitOne(); } catch (ObjectDisposedException) { // If an ObjectDisposedException is thrown because // the WaitHandle has already closed, nothing to worry // about. Move on. } lock (syncRoot) { try { this.transaction.Commit(); en.Committed(); } catch (Exception e) { en.Aborted(e); } finally { if ((null != connection) && (ConnectionState.Closed != connection.State)) { connection.Close(); connection = null; } } } } public void Rollback(SinglePhaseEnlistment en) { if (en == null) throw new ArgumentNullException("en"); // // Wait until IPendingWork members have completed (WinOE bugs 17580 and 13395) try { handle.WaitOne(); } catch (ObjectDisposedException) { // If an ObjectDisposedException is thrown because // the WaitHandle has already closed, nothing to worry // about. Move on. } // DbTransaction.Dispose will call Rollback if the DbTransaction is not Zombied. // Not safe to call DbTransaction.Rollback here as the the underlining // DbTransaction may have already been Rolled back lock (syncRoot) { if (null != transaction) transaction.Dispose(); if ((null != connection) && (ConnectionState.Closed != connection.State)) { connection.Close(); connection = null; } en.Aborted(); } } public byte[] Promote() { throw new TransactionPromotionException( ExecutionStringManager.PromotionNotSupported); } #endregion IPromotableSinglePhaseNotification Members } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Win32Native.cs
- ListParaClient.cs
- RightsManagementEncryptionTransform.cs
- EdmFunctionAttribute.cs
- StackOverflowException.cs
- TextSerializer.cs
- TextEndOfParagraph.cs
- Calendar.cs
- MulticastNotSupportedException.cs
- XmlSchemaImport.cs
- EpmTargetTree.cs
- NotImplementedException.cs
- HMACSHA256.cs
- AppModelKnownContentFactory.cs
- RotationValidation.cs
- ContractDescription.cs
- AttributeCallbackBuilder.cs
- FieldToken.cs
- WebPartUserCapability.cs
- ExpandSegmentCollection.cs
- DescendantQuery.cs
- VersionedStream.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- DataReaderContainer.cs
- MorphHelper.cs
- Events.cs
- ScrollViewer.cs
- HealthMonitoringSectionHelper.cs
- UMPAttributes.cs
- InkPresenterAutomationPeer.cs
- SettingsPropertyWrongTypeException.cs
- TemplateBamlTreeBuilder.cs
- webeventbuffer.cs
- Timer.cs
- EntityModelSchemaGenerator.cs
- SocketAddress.cs
- ImageResources.Designer.cs
- DataServiceQuery.cs
- CachedTypeface.cs
- Vector3D.cs
- TextTreeTextBlock.cs
- TrackBarRenderer.cs
- NetworkAddressChange.cs
- ObsoleteAttribute.cs
- LogReservationCollection.cs
- XPathNavigatorKeyComparer.cs
- SimplePropertyEntry.cs
- FormParameter.cs
- SystemSounds.cs
- PlatformNotSupportedException.cs
- SigningDialog.cs
- MergeFilterQuery.cs
- ErrorHandler.cs
- recordstatefactory.cs
- DateTimeUtil.cs
- ScrollItemProviderWrapper.cs
- RtfControlWordInfo.cs
- ZipIOLocalFileBlock.cs
- LeaseManager.cs
- DbReferenceCollection.cs
- SchemaImporter.cs
- TakeOrSkipQueryOperator.cs
- ImageAutomationPeer.cs
- ListViewCancelEventArgs.cs
- ServiceParser.cs
- XmlSchemaGroup.cs
- TableColumnCollection.cs
- PermissionListSet.cs
- AsyncOperationManager.cs
- DefaultAsyncDataDispatcher.cs
- ExpressionBinding.cs
- PackagePartCollection.cs
- RegexTree.cs
- SoapTypeAttribute.cs
- DbFunctionCommandTree.cs
- UnsafeNativeMethods.cs
- ButtonColumn.cs
- SelectionPatternIdentifiers.cs
- MemberAssignment.cs
- SelectManyQueryOperator.cs
- ExpressionBuilderContext.cs
- ExpandCollapseIsCheckedConverter.cs
- AutomationPeer.cs
- CodeObject.cs
- AdRotatorDesigner.cs
- TextTrailingCharacterEllipsis.cs
- IntSecurity.cs
- RegexWriter.cs
- VisualTreeFlattener.cs
- ProcessHostMapPath.cs
- Certificate.cs
- ToolStripSplitButton.cs
- FormView.cs
- path.cs
- ConstructorNeedsTagAttribute.cs
- _HelperAsyncResults.cs
- UnmanagedMemoryStreamWrapper.cs
- KeyValueSerializer.cs
- CAGDesigner.cs
- TypeDescriptionProvider.cs