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
- SqlRemoveConstantOrderBy.cs
- TlsSspiNegotiation.cs
- ListDictionary.cs
- ChannelSettingsElement.cs
- EmptyImpersonationContext.cs
- Sql8ConformanceChecker.cs
- ResourceReferenceExpressionConverter.cs
- XsdDateTime.cs
- ParseNumbers.cs
- SslStreamSecurityUpgradeProvider.cs
- TextEditorContextMenu.cs
- Int32.cs
- StorageComplexPropertyMapping.cs
- SchemaAttDef.cs
- Buffer.cs
- ItemCollection.cs
- SqlDataReaderSmi.cs
- AttachedAnnotationChangedEventArgs.cs
- SimpleTextLine.cs
- EventHandlerList.cs
- metadatamappinghashervisitor.cs
- Pen.cs
- MailWriter.cs
- IOException.cs
- NumberFunctions.cs
- EntryPointNotFoundException.cs
- DesignerAdapterAttribute.cs
- TdsParserSafeHandles.cs
- ProfilePropertyMetadata.cs
- GlyphRunDrawing.cs
- CustomSignedXml.cs
- InvalidDocumentContentsException.cs
- CdpEqualityComparer.cs
- WindowsGraphicsWrapper.cs
- DrawingAttributes.cs
- UserControl.cs
- DnsPermission.cs
- NameValueSectionHandler.cs
- QueryCacheManager.cs
- BrowsableAttribute.cs
- LinqDataSourceValidationException.cs
- OrderedParallelQuery.cs
- XhtmlTextWriter.cs
- DataAdapter.cs
- NegotiateStream.cs
- XmlSerializationGeneratedCode.cs
- ProxyWebPart.cs
- TableLayoutPanelResizeGlyph.cs
- DetailsViewRowCollection.cs
- SQLBinary.cs
- HtmlEncodedRawTextWriter.cs
- FileSystemEventArgs.cs
- IntranetCredentialPolicy.cs
- SecurityTokenTypes.cs
- BaseDataList.cs
- AttachedPropertiesService.cs
- XmlSchemaComplexContent.cs
- WebResourceUtil.cs
- ConfigurationSection.cs
- TextRangeProviderWrapper.cs
- Process.cs
- XPathNodePointer.cs
- OleStrCAMarshaler.cs
- ValueTable.cs
- PasswordTextContainer.cs
- xamlnodes.cs
- Vector3DCollection.cs
- mediaeventargs.cs
- ToolStripItemClickedEventArgs.cs
- AssertUtility.cs
- DbConnectionHelper.cs
- BinaryEditor.cs
- Page.cs
- FacetValues.cs
- EmptyStringExpandableObjectConverter.cs
- SBCSCodePageEncoding.cs
- QilValidationVisitor.cs
- Ops.cs
- StrokeSerializer.cs
- DesignTimeVisibleAttribute.cs
- SmtpException.cs
- TreeView.cs
- DataBindingHandlerAttribute.cs
- ColorConvertedBitmapExtension.cs
- KeyValuePair.cs
- PersonalizableAttribute.cs
- loginstatus.cs
- CommandField.cs
- CaseInsensitiveOrdinalStringComparer.cs
- SwitchElementsCollection.cs
- MarkupObject.cs
- SafeEventLogWriteHandle.cs
- XmlObjectSerializerReadContext.cs
- XmlArrayItemAttribute.cs
- Point3DCollection.cs
- ToolStripSystemRenderer.cs
- AppSecurityManager.cs
- SqlException.cs
- MsmqProcessProtocolHandler.cs
- DynamicEndpointElement.cs