Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Discovery / System / ServiceModel / Discovery / AnnouncementDispatcherAsyncResult.cs / 1305376 / AnnouncementDispatcherAsyncResult.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.ServiceModel.Discovery { using System.Collections.ObjectModel; using System.Runtime; using System.Threading; using System.Xml; class AnnouncementDispatcherAsyncResult : AsyncResult { readonly AnnouncementSendsAsyncResult[] innerResults; [Fx.Tag.SynchronizationObject(Blocking = false, Kind = Fx.Tag.SynchronizationKind.InterlockedNoSpin)] int completions; AsyncCallback onAnnouncementSendsCompletedCallback; [Fx.Tag.SynchronizationObject(Blocking = false, Kind = Fx.Tag.SynchronizationKind.InterlockedNoSpin)] int completesCounter; bool cancelled; [Fx.Tag.SynchronizationObject()] object thisLock; public AnnouncementDispatcherAsyncResult( Collectionendpoints, Collection metadatas, DiscoveryMessageSequenceGenerator discoveryMessageSequenceGenerator, bool online, AsyncCallback callback, object state ) : base(callback, state) { if (metadatas.Count == 0) { Complete(true); return; } bool success = false; this.cancelled = false; this.thisLock = new object(); this.innerResults = new AnnouncementSendsAsyncResult[endpoints.Count]; this.onAnnouncementSendsCompletedCallback = Fx.ThunkCallback(new AsyncCallback(OnAnnouncementSendsCompleted)); Collection messageIds = AllocateMessageIds(metadatas.Count); try { Random random = new Random(); for (int i = 0; i < this.innerResults.Length; i++) { AnnouncementClient announcementClient = new AnnouncementClient(endpoints[i]); announcementClient.MessageSequenceGenerator = discoveryMessageSequenceGenerator; this.innerResults[i] = new AnnouncementSendsAsyncResult( announcementClient, metadatas, messageIds, online, endpoints[i].MaxAnnouncementDelay, random, this.onAnnouncementSendsCompletedCallback, this); } success = true; } finally { if (!success) { this.Cancel(); } } } public void Start(TimeSpan timeout, bool canCompleteSynchronously) { if (this.IsCompleted || this.cancelled) { return; } bool synchronousCompletion = canCompleteSynchronously; Exception error = null; bool complete = false; try { for (int i = 0; i < this.innerResults.Length; i++) { this.innerResults[i].Start(timeout); if (this.innerResults[i].CompletedSynchronously) { AnnouncementSendsAsyncResult.End(this.innerResults[i]); complete = (Interlocked.Increment(ref this.completions) == innerResults.Length); } else { synchronousCompletion = false; } } } catch (Exception e) { if (Fx.IsFatal(e)) { throw; } error = e; } if (error != null) { CallCompleteOnce(synchronousCompletion, error); } else if (complete) { CallCompleteOnce(synchronousCompletion, null); } } void OnAnnouncementSendsCompleted(IAsyncResult result) { if (!result.CompletedSynchronously) { Exception error = null; try { AnnouncementSendsAsyncResult.End(result); } catch (Exception e) { if (Fx.IsFatal(e)) { throw; } error = e; } if (error != null) { CallCompleteOnce(false, error); } else { if (Interlocked.Increment(ref this.completions) == innerResults.Length) { CallCompleteOnce(false, null); } } } } public void Cancel() { if (!this.cancelled) { bool doCancel = false; lock (this.thisLock) { if (!this.cancelled) { doCancel = true; this.cancelled = true; } } if (doCancel) { for (int i = 0; i < this.innerResults.Length; i++) { if (this.innerResults[i] != null) { this.innerResults[i].Cancel(); } } CompleteOnCancel(); } } } void CompleteOnCancel() { if (Threading.Interlocked.Increment(ref this.completesCounter) == 1) { Complete(false, new OperationCanceledException()); } } void CallCompleteOnce(bool completedSynchronously, Exception e) { if (Threading.Interlocked.Increment(ref this.completesCounter) == 1) { if (e != null) { Cancel(); } Complete(completedSynchronously, e); } } public static void End(IAsyncResult result) { AsyncResult.End (result); } static Collection AllocateMessageIds(int count) { Collection messageIds = new Collection (); for (int i = 0; i < count; i++) { messageIds.Add(new UniqueId()); } return messageIds; } } } // 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
- XPathDocument.cs
- NumberAction.cs
- ThumbButtonInfoCollection.cs
- MobileControlPersister.cs
- WebPartConnectionsEventArgs.cs
- FormatterServices.cs
- safelinkcollection.cs
- XmlSerializerAssemblyAttribute.cs
- InvalidAsynchronousStateException.cs
- HttpCookie.cs
- OdbcUtils.cs
- IList.cs
- SystemIPGlobalProperties.cs
- XmlnsDefinitionAttribute.cs
- ApplicationManager.cs
- WebPart.cs
- ChooseAction.cs
- GridViewEditEventArgs.cs
- ValueExpressions.cs
- TriggerCollection.cs
- CodeDirectionExpression.cs
- DataKeyCollection.cs
- Collection.cs
- TextEditorCopyPaste.cs
- BinaryFormatterWriter.cs
- PageCatalogPart.cs
- JsonReader.cs
- Stack.cs
- MarshalByRefObject.cs
- ColorTransformHelper.cs
- SqlSelectStatement.cs
- DataTrigger.cs
- OptimalBreakSession.cs
- SqlInternalConnectionTds.cs
- Evidence.cs
- ExpressionHelper.cs
- FixedHyperLink.cs
- WriteLine.cs
- embossbitmapeffect.cs
- WebResponse.cs
- ProcessThread.cs
- VersionedStreamOwner.cs
- CachedCompositeFamily.cs
- DataServiceSaveChangesEventArgs.cs
- DataBoundLiteralControl.cs
- PreApplicationStartMethodAttribute.cs
- TextDecorationUnitValidation.cs
- EventsTab.cs
- SimpleLine.cs
- VersionPair.cs
- JsonReaderDelegator.cs
- ValidationSummary.cs
- BitmapEffectDrawingContextState.cs
- MeasureData.cs
- DtdParser.cs
- AnimationClock.cs
- NameValuePermission.cs
- ZipIOLocalFileHeader.cs
- HTMLTextWriter.cs
- MimeFormReflector.cs
- FamilyTypeface.cs
- OperationInvokerBehavior.cs
- JsonFormatGeneratorStatics.cs
- ControlBindingsCollection.cs
- BaseCodePageEncoding.cs
- Vector.cs
- Compiler.cs
- XamlTemplateSerializer.cs
- BindingList.cs
- SqlDataSourceConfigureFilterForm.cs
- ApplicationSettingsBase.cs
- Int64Storage.cs
- BasicExpandProvider.cs
- MultiBinding.cs
- UnaryQueryOperator.cs
- SoapCodeExporter.cs
- ConfigXmlReader.cs
- SystemDiagnosticsSection.cs
- SetStateDesigner.cs
- Model3DGroup.cs
- SQLGuid.cs
- StringAttributeCollection.cs
- DataViewSetting.cs
- contentDescriptor.cs
- ArcSegment.cs
- NamedPermissionSet.cs
- FormsAuthenticationEventArgs.cs
- MsmqVerifier.cs
- Translator.cs
- RemoteWebConfigurationHost.cs
- ResourceWriter.cs
- UTF7Encoding.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- ParamArrayAttribute.cs
- PointLightBase.cs
- CellTreeNode.cs
- Pen.cs
- EnlistmentTraceIdentifier.cs
- XComponentModel.cs
- EntityDataSourceViewSchema.cs