Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Collections / Concurrent / IProducerConsumerCollection.cs / 1305376 / IProducerConsumerCollection.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // IProducerConsumerCollection.cs // //[....] // // A common interface for all concurrent collections. // // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- using System.Collections; using System.Collections.Generic; using System.Diagnostics; namespace System.Collections.Concurrent { ////// Defines methods to manipulate thread-safe collections intended for producer/consumer usage. /// ///Specifies the type of elements in the collection. ////// All implementations of this interface must enable all members of this interface /// to be used concurrently from multiple threads. /// public interface IProducerConsumerCollection: IEnumerable , ICollection { /// /// Copies the elements of the /// The one-dimensionalto /// an /// , starting at a specified index. /// that is the destination of /// the elements copied from the . /// The array must have zero-based indexing. /// The zero-based index in at which copying /// begins. /// /// is a null reference (Nothing in /// Visual Basic). /// is less than /// zero. void CopyTo(T[] array, int index); /// is equal to or greater than the /// length of the /// -or- The number of elements in the source is greater than the /// available space from to the end of the destination . /// /// Attempts to add an object to the /// The object to add to the. /// . /// true if the object was added successfully; otherwise, false. ///The bool TryAdd(T item); ///was invalid for this collection. /// Attempts to remove and return an object from the /// /// When this method returns, if the object was removed and returned successfully,. /// contains the removed object. If no object was available to be removed, the value is /// unspecified. /// /// true if an object was removed and returned successfully; otherwise, false. bool TryTake(out T item); ////// Copies the elements contained in the ///to a new array. /// A new array containing the elements copied from the T[] ToArray(); } ///. /// A debugger view of the IProducerConsumerCollection that makes it simple to browse the /// collection's contents at a point in time. /// ///The type of elements stored within. internal sealed class SystemCollectionsConcurrent_ProducerConsumerCollectionDebugView{ private IProducerConsumerCollection m_collection; // The collection being viewed. /// /// Constructs a new debugger view object for the provided collection object. /// /// A collection to browse in the debugger. public SystemCollectionsConcurrent_ProducerConsumerCollectionDebugView(IProducerConsumerCollectioncollection) { if (collection == null) { throw new ArgumentNullException("collection"); } m_collection = collection; } /// /// Returns a snapshot of the underlying collection's elements. /// [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { return m_collection.ToArray(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // IProducerConsumerCollection.cs // //[....] // // A common interface for all concurrent collections. // // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- using System.Collections; using System.Collections.Generic; using System.Diagnostics; namespace System.Collections.Concurrent { ////// Defines methods to manipulate thread-safe collections intended for producer/consumer usage. /// ///Specifies the type of elements in the collection. ////// All implementations of this interface must enable all members of this interface /// to be used concurrently from multiple threads. /// public interface IProducerConsumerCollection: IEnumerable , ICollection { /// /// Copies the elements of the /// The one-dimensionalto /// an /// , starting at a specified index. /// that is the destination of /// the elements copied from the . /// The array must have zero-based indexing. /// The zero-based index in at which copying /// begins. /// /// is a null reference (Nothing in /// Visual Basic). /// is less than /// zero. void CopyTo(T[] array, int index); /// is equal to or greater than the /// length of the /// -or- The number of elements in the source is greater than the /// available space from to the end of the destination . /// /// Attempts to add an object to the /// The object to add to the. /// . /// true if the object was added successfully; otherwise, false. ///The bool TryAdd(T item); ///was invalid for this collection. /// Attempts to remove and return an object from the /// /// When this method returns, if the object was removed and returned successfully,. /// contains the removed object. If no object was available to be removed, the value is /// unspecified. /// /// true if an object was removed and returned successfully; otherwise, false. bool TryTake(out T item); ////// Copies the elements contained in the ///to a new array. /// A new array containing the elements copied from the T[] ToArray(); } ///. /// A debugger view of the IProducerConsumerCollection that makes it simple to browse the /// collection's contents at a point in time. /// ///The type of elements stored within. internal sealed class SystemCollectionsConcurrent_ProducerConsumerCollectionDebugView{ private IProducerConsumerCollection m_collection; // The collection being viewed. /// /// Constructs a new debugger view object for the provided collection object. /// /// A collection to browse in the debugger. public SystemCollectionsConcurrent_ProducerConsumerCollectionDebugView(IProducerConsumerCollectioncollection) { if (collection == null) { throw new ArgumentNullException("collection"); } m_collection = collection; } /// /// Returns a snapshot of the underlying collection's elements. /// [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)] public T[] Items { get { return m_collection.ToArray(); } } } } // 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
- CommonEndpointBehaviorElement.cs
- SiteMapNode.cs
- ArrayEditor.cs
- Triplet.cs
- PreservationFileWriter.cs
- SafeRightsManagementPubHandle.cs
- FontStyleConverter.cs
- RegexGroup.cs
- BaseContextMenu.cs
- InternalsVisibleToAttribute.cs
- TCEAdapterGenerator.cs
- RunClient.cs
- TriggerAction.cs
- MergePropertyDescriptor.cs
- Knowncolors.cs
- ContextStaticAttribute.cs
- XmlChildEnumerator.cs
- TimeoutHelper.cs
- WebPartEventArgs.cs
- PerformanceCounterPermissionEntryCollection.cs
- DbSetClause.cs
- CursorInteropHelper.cs
- WindowsHyperlink.cs
- MailDefinition.cs
- QueryStringParameter.cs
- DateTimePicker.cs
- CustomSignedXml.cs
- CurrentChangedEventManager.cs
- CodeValidator.cs
- ClientCultureInfo.cs
- IApplicationTrustManager.cs
- DataTransferEventArgs.cs
- RSACryptoServiceProvider.cs
- DbParameterCollection.cs
- BrowserDefinition.cs
- control.ime.cs
- LoadRetryHandler.cs
- DataViewSettingCollection.cs
- PlanCompilerUtil.cs
- SrgsSubset.cs
- UnsafePeerToPeerMethods.cs
- sqlstateclientmanager.cs
- ImageMapEventArgs.cs
- IncrementalReadDecoders.cs
- EdmScalarPropertyAttribute.cs
- DBConcurrencyException.cs
- Enlistment.cs
- CheckableControlBaseAdapter.cs
- ChangePassword.cs
- InvalidFilterCriteriaException.cs
- DataSourceXmlClassAttribute.cs
- UnsafeNativeMethods.cs
- ErrorWebPart.cs
- ShaderEffect.cs
- TabControlEvent.cs
- FileDialog.cs
- AspNetHostingPermission.cs
- BaseDataListDesigner.cs
- DataService.cs
- Binding.cs
- ParserOptions.cs
- GetFileNameResult.cs
- OpenTypeCommon.cs
- QueryableDataSourceHelper.cs
- PageAsyncTaskManager.cs
- altserialization.cs
- PackageRelationshipSelector.cs
- DataSourceSerializationException.cs
- MenuItemBindingCollection.cs
- Delegate.cs
- MsmqTransportSecurity.cs
- ImageDrawing.cs
- OleDbError.cs
- DataGridViewCell.cs
- DbSourceCommand.cs
- ConfigurationErrorsException.cs
- DataBindEngine.cs
- XhtmlConformanceSection.cs
- RegexNode.cs
- EffectiveValueEntry.cs
- XamlGridLengthSerializer.cs
- ModelItemImpl.cs
- CollectionDataContract.cs
- Line.cs
- WebConfigurationFileMap.cs
- safemediahandle.cs
- HtmlInputFile.cs
- PersistenceMetadataNamespace.cs
- RuleConditionDialog.Designer.cs
- SqlCommand.cs
- SimpleTextLine.cs
- StringDictionaryCodeDomSerializer.cs
- UniformGrid.cs
- WebPartRestoreVerb.cs
- itemelement.cs
- SqlSelectStatement.cs
- DrawTreeNodeEventArgs.cs
- StringSorter.cs
- StdValidatorsAndConverters.cs
- GeneralTransform2DTo3DTo2D.cs