Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.BackgroundProcessing/3.2/ObservableEnumerable.cs @ 2410

Last change on this file since 2410 was 2410, checked in by epitzer, 15 years ago

make CancelAll asynchronous, add support for several worker monitors. (#769)

File size: 465 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Collections.Specialized;
4using System.Collections;
5
6namespace HeuristicLab.BackgroundProcessing {
7  /// <summary>
8  /// Combines <code>IEnumerable&gt;T&lt;"/></code> and <code>INotifyCollectionChanged</code> into
9  /// a single interface.
10  /// </summary>
11  /// <typeparam name="T"></typeparam>
12  public interface IObservableEnumerable<T> : IEnumerable<T>, INotifyCollectionChanged { }
13}
Note: See TracBrowser for help on using the repository browser.