IConcatenatable.cs 323 B

123456789101112
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. using System;
  3. using System.Collections.Generic;
  4. namespace System.Reactive
  5. {
  6. interface IConcatenatable<TSource>
  7. {
  8. IEnumerable<IObservable<TSource>> GetSources();
  9. }
  10. }