Last change
on this file since 2479 was
2410,
checked in by epitzer, 15 years ago
|
make CancelAll asynchronous, add support for several worker monitors. (#769)
|
File size:
465 bytes
|
Rev | Line | |
---|
[2399] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Collections.Specialized;
|
---|
| 4 | using System.Collections;
|
---|
| 5 |
|
---|
| 6 | namespace HeuristicLab.BackgroundProcessing {
|
---|
| 7 | /// <summary>
|
---|
| 8 | /// Combines <code>IEnumerable>T<"/></code> and <code>INotifyCollectionChanged</code> into
|
---|
[2408] | 9 | /// a single interface.
|
---|
[2399] | 10 | /// </summary>
|
---|
| 11 | /// <typeparam name="T"></typeparam>
|
---|
[2410] | 12 | public interface IObservableEnumerable<T> : IEnumerable<T>, INotifyCollectionChanged { }
|
---|
[2399] | 13 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.