Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / ChannelTracker.cs / 1 / ChannelTracker.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Channels { using System.Collections.Generic; using System.ServiceModel; using System.Diagnostics; using System.IO; using System.Runtime.Serialization; using System.ServiceModel.Diagnostics; using System.Text; using System.Threading; using System.ServiceModel.Description; using System.Xml; ////// Track channels and (optionally) associated state /// class ChannelTracker: CommunicationObject where TChannel : IChannel where TState : class { Dictionary receivers; EventHandler onInnerChannelClosed; EventHandler onInnerChannelFaulted; public ChannelTracker() { this.receivers = new Dictionary (); this.onInnerChannelClosed = new EventHandler(OnInnerChannelClosed); this.onInnerChannelFaulted = new EventHandler(OnInnerChannelFaulted); } public void Add(TChannel channel, TState channelReceiver) { bool abortChannel = false; lock (this.receivers) { if (this.State != CommunicationState.Opened) { abortChannel = true; } else { this.receivers.Add(channel, channelReceiver); } } if (abortChannel) { channel.Abort(); } } public void PrepareChannel(TChannel channel) { channel.Faulted += this.onInnerChannelFaulted; channel.Closed += this.onInnerChannelClosed; } void OnInnerChannelFaulted(object sender, EventArgs e) { ((TChannel)sender).Abort(); } void OnInnerChannelClosed(object sender, EventArgs e) { // remove the channel from our tracking dictionary TChannel channel = (TChannel)sender; this.Remove(channel); channel.Faulted -= this.onInnerChannelFaulted; channel.Closed -= this.onInnerChannelClosed; } public bool Remove(TChannel channel) { lock (this.receivers) { return this.receivers.Remove(channel); } } TChannel[] GetChannels() { lock (this.receivers) { TChannel[] channels = new TChannel[this.receivers.Keys.Count]; this.receivers.Keys.CopyTo(channels, 0); this.receivers.Clear(); return channels; } } protected override void OnAbort() { TChannel[] channels = GetChannels(); for (int i = 0; i < channels.Length; i++) { channels[i].Abort(); } } protected override void OnClose(TimeSpan timeout) { TimeoutHelper timeoutHelper = new TimeoutHelper(timeout); TChannel[] channels = GetChannels(); for (int i = 0; i < channels.Length; i++) { bool success = false; try { channels[i].Close(timeoutHelper.RemainingTime()); success = true; } catch (CommunicationException e) { if (DiagnosticUtility.ShouldTraceInformation) { DiagnosticUtility.ExceptionUtility.TraceHandledException(e, TraceEventType.Information); } } catch (TimeoutException e) { if (DiagnosticUtility.ShouldTraceInformation) { DiagnosticUtility.ExceptionUtility.TraceHandledException(e, TraceEventType.Information); } } finally { if (!success) { channels[i].Abort(); } } } } protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) { TChannel[] channels = GetChannels(); List collection = new List (); for (int i = 0; i < channels.Length; i++) { collection.Add(channels[i]); } return new CloseCollectionAsyncResult(timeout, callback, state, collection); } protected override void OnEndClose(IAsyncResult result) { CloseCollectionAsyncResult.End(result); } protected override TimeSpan DefaultCloseTimeout { get { return ServiceDefaults.CloseTimeout; } } protected override TimeSpan DefaultOpenTimeout { get { return ServiceDefaults.OpenTimeout; } } protected override void OnOpen(TimeSpan timeout) { } protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) { return new CompletedAsyncResult(callback, state); } protected override void OnEndOpen(IAsyncResult result) { CompletedAsyncResult.End(result); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BoundConstants.cs
- X509Utils.cs
- RemotingServices.cs
- DbCommandTree.cs
- HTTPNotFoundHandler.cs
- ProtocolsConfiguration.cs
- DiagnosticTraceSource.cs
- ToolboxComponentsCreatedEventArgs.cs
- Int32.cs
- GuidConverter.cs
- HttpContextWrapper.cs
- SmiXetterAccessMap.cs
- MaskInputRejectedEventArgs.cs
- ChangeConflicts.cs
- XmlSignificantWhitespace.cs
- WorkflowEventArgs.cs
- DesignerVerbCollection.cs
- metadatamappinghashervisitor.cs
- WindowShowOrOpenTracker.cs
- Misc.cs
- DataKey.cs
- ProfileParameter.cs
- SymLanguageVendor.cs
- SqlXmlStorage.cs
- COM2ExtendedUITypeEditor.cs
- ContentPosition.cs
- TraceSwitch.cs
- SchemaMapping.cs
- XPathNavigatorReader.cs
- MessageBox.cs
- ClusterSafeNativeMethods.cs
- SwitchElementsCollection.cs
- InputScopeManager.cs
- XPathMessageFilterElement.cs
- TemplateXamlTreeBuilder.cs
- ObjectConverter.cs
- SecurityPolicySection.cs
- TextParagraph.cs
- DefaultPerformanceCounters.cs
- FirstMatchCodeGroup.cs
- SafeCryptHandles.cs
- SingleAnimationUsingKeyFrames.cs
- WebPartTransformerCollection.cs
- Assert.cs
- UriScheme.cs
- CodeCompiler.cs
- EntityContainer.cs
- RepeatBehaviorConverter.cs
- KeyConverter.cs
- ObjectQueryExecutionPlan.cs
- QilTypeChecker.cs
- CommandField.cs
- CommentAction.cs
- TimeManager.cs
- MethodCallTranslator.cs
- HttpRequestCacheValidator.cs
- SourceInterpreter.cs
- DispatcherEventArgs.cs
- FontFamily.cs
- XmlSchemaValidationException.cs
- PageSettings.cs
- FixedStringLookup.cs
- ReferenceConverter.cs
- EditingMode.cs
- ItemAutomationPeer.cs
- followingquery.cs
- ExtendedProperty.cs
- ConfigurationSectionHelper.cs
- HttpListener.cs
- PersonalizationAdministration.cs
- XamlWriter.cs
- _SingleItemRequestCache.cs
- BitVector32.cs
- DataGridCommandEventArgs.cs
- GenericEnumerator.cs
- EntityDataSourceDesignerHelper.cs
- DbConnectionHelper.cs
- Subtree.cs
- Model3DCollection.cs
- XmlText.cs
- BamlRecordReader.cs
- EventSinkActivityDesigner.cs
- DataControlCommands.cs
- XmlSchemaComplexType.cs
- SecurityDocument.cs
- InstanceKeyCompleteException.cs
- XpsFilter.cs
- MemberMemberBinding.cs
- ScriptResourceInfo.cs
- StringDictionary.cs
- ScriptingWebServicesSectionGroup.cs
- basenumberconverter.cs
- EmptyCollection.cs
- NetDataContractSerializer.cs
- FormsAuthenticationConfiguration.cs
- NativeMethods.cs
- SqlBuilder.cs
- DisplayNameAttribute.cs
- List.cs
- SoapTypeAttribute.cs