Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Activities / System / ServiceModel / Activities / Dispatcher / transactioncontext.cs / 1305376 / transactioncontext.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.ServiceModel.Activities.Dispatcher { using System.Runtime; using System.Transactions; //1) On Tx.Prepare // Persist the instance. // When Persist completes Tx.Prepared called. // When Persist fails Tx.ForceRollback called. //2) On Tx.Commit // DurableInstance.OnTransactionCompleted(). //3) On Tx.Abort // DurableInstance.OnTransactionAborted() class TransactionContext : IEnlistmentNotification { static AsyncCallback handleEndPrepare = Fx.ThunkCallback(new AsyncCallback(HandleEndPrepare)); Transaction currentTransaction; WorkflowServiceInstance durableInstance; public TransactionContext(WorkflowServiceInstance durableInstance, Transaction currentTransaction) { Fx.Assert(durableInstance != null, "Null DurableInstance passed to TransactionContext."); Fx.Assert(currentTransaction != null, "Null Transaction passed to TransactionContext."); this.currentTransaction = currentTransaction.Clone(); this.durableInstance = durableInstance; this.currentTransaction.EnlistVolatile(this, EnlistmentOptions.EnlistDuringPrepareRequired); } public Transaction CurrentTransaction { get { return this.currentTransaction; } } void IEnlistmentNotification.Commit(Enlistment enlistment) { enlistment.Done(); this.durableInstance.TransactionCommitted(); } void IEnlistmentNotification.InDoubt(Enlistment enlistment) { enlistment.Done(); Fx.Assert(this.currentTransaction.TransactionInformation.Status == TransactionStatus.InDoubt, "Transaction state should be InDoubt at this point"); TransactionException exception = this.GetAbortedOrInDoubtTransactionException(); Fx.Assert(exception != null, "Need a valid TransactionException at this point"); this.durableInstance.OnTransactionAbortOrInDoubt(exception); } void IEnlistmentNotification.Prepare(PreparingEnlistment preparingEnlistment) { bool success = false; try { IAsyncResult result = new PrepareAsyncResult(this, TransactionContext.handleEndPrepare, preparingEnlistment); if (result.CompletedSynchronously) { PrepareAsyncResult.End(result); preparingEnlistment.Prepared(); } success = true; } //we need to swollow the TransactionException as it could because another party aborting it catch (TransactionException) {} finally { if (!success) { preparingEnlistment.ForceRollback(); } } } void IEnlistmentNotification.Rollback(Enlistment enlistment) { enlistment.Done(); Fx.Assert(this.currentTransaction.TransactionInformation.Status == TransactionStatus.Aborted,"Transaction state should be Aborted at this point"); TransactionException exception = this.GetAbortedOrInDoubtTransactionException(); Fx.Assert(exception != null, "Need a valid TransactionException at this point"); this.durableInstance.OnTransactionAbortOrInDoubt(exception); } TransactionException GetAbortedOrInDoubtTransactionException() { try { Fx.ThrowIfTransactionAbortedOrInDoubt(this.currentTransaction); } catch (TransactionException exception) { return exception; } return null; } static void HandleEndPrepare(IAsyncResult result) { PreparingEnlistment preparingEnlistment = (PreparingEnlistment)result.AsyncState; bool success = false; try { if (!result.CompletedSynchronously) { PrepareAsyncResult.End(result); preparingEnlistment.Prepared(); } success = true; } //we need to swollow the TransactionException as it could because another party aborting it catch (TransactionException) {} finally { if (!success) { preparingEnlistment.ForceRollback(); } } } class PrepareAsyncResult : AsyncResult { static readonly AsyncCompletion onEndPersist = new AsyncCompletion(OnEndPersist); readonly TransactionContext context; public PrepareAsyncResult(TransactionContext context, AsyncCallback callback, object state) : base(callback, state) { this.context = context; IAsyncResult result = null; using (PrepareTransactionalCall(this.context.currentTransaction)) { result = this.context.durableInstance.BeginPersist(TimeSpan.MaxValue, PrepareAsyncCompletion(PrepareAsyncResult.onEndPersist), this); } if (SyncContinue(result)) { Complete(true); } } public static void End(IAsyncResult result) { AsyncResult.End(result); } static bool OnEndPersist(IAsyncResult result) { PrepareAsyncResult thisPtr = (PrepareAsyncResult)result.AsyncState; thisPtr.context.durableInstance.EndPersist(result); thisPtr.context.durableInstance.OnTransactionPrepared(); return true; } } } } // 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
- ExcCanonicalXml.cs
- DesignerVerbToolStripMenuItem.cs
- QueryCacheEntry.cs
- HashStream.cs
- ConstraintStruct.cs
- PropertiesTab.cs
- ArrangedElementCollection.cs
- FacetChecker.cs
- IPEndPoint.cs
- ListItemCollection.cs
- DataBindingCollection.cs
- _FtpDataStream.cs
- KeyedQueue.cs
- RegexParser.cs
- ObjectStateFormatter.cs
- MetadataException.cs
- versioninfo.cs
- FlowDocumentView.cs
- SqlTypeSystemProvider.cs
- versioninfo.cs
- ExceptionCollection.cs
- HtmlWindow.cs
- BaseDataListDesigner.cs
- EntityDesignPluralizationHandler.cs
- Ipv6Element.cs
- AuthenticationManager.cs
- TypedReference.cs
- TraceHandlerErrorFormatter.cs
- HandleCollector.cs
- XmlBufferReader.cs
- Point3DCollection.cs
- SymbolPair.cs
- HostingEnvironment.cs
- XhtmlCssHandler.cs
- XmlElementCollection.cs
- ImageIndexEditor.cs
- MD5HashHelper.cs
- DynamicRendererThreadManager.cs
- StrokeCollectionConverter.cs
- XdrBuilder.cs
- StorageEndPropertyMapping.cs
- DataSourceControl.cs
- BasicAsyncResult.cs
- ServicePointManagerElement.cs
- SiteMapDataSource.cs
- ServiceObjectContainer.cs
- DataStreamFromComStream.cs
- Control.cs
- TraceInternal.cs
- HtmlInputText.cs
- DataGridViewAddColumnDialog.cs
- CollectionDataContractAttribute.cs
- MenuRendererStandards.cs
- TransformValueSerializer.cs
- RequestCacheValidator.cs
- GridItemProviderWrapper.cs
- RulePatternOps.cs
- DbConnectionHelper.cs
- WinInet.cs
- OleDbSchemaGuid.cs
- SimpleMailWebEventProvider.cs
- QilGeneratorEnv.cs
- XLinq.cs
- PropertyReferenceSerializer.cs
- _AutoWebProxyScriptWrapper.cs
- DrawTreeNodeEventArgs.cs
- RegexWriter.cs
- AuthenticationModulesSection.cs
- ChangePasswordAutoFormat.cs
- TransactionFormatter.cs
- WebPartZoneCollection.cs
- SoapAttributes.cs
- EventOpcode.cs
- DataBoundControl.cs
- XsltFunctions.cs
- ConnectionStringSettingsCollection.cs
- RenderTargetBitmap.cs
- PagedDataSource.cs
- DataPagerField.cs
- BaseHashHelper.cs
- ChildTable.cs
- ContentFileHelper.cs
- odbcmetadatacolumnnames.cs
- LinqDataSourceHelper.cs
- InternalPolicyElement.cs
- HotSpotCollection.cs
- DrawingCollection.cs
- XmlSchemaSubstitutionGroup.cs
- View.cs
- Timeline.cs
- DataBoundControlActionList.cs
- StorageAssociationTypeMapping.cs
- MainMenu.cs
- UInt16.cs
- SqlConnectionString.cs
- Expander.cs
- FilterQuery.cs
- ParsedAttributeCollection.cs
- PixelFormat.cs
- IIS7WorkerRequest.cs