ISubject.cs 455 B

123456789101112
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. namespace System.Reactive.Subjects
  3. {
  4. /// <summary>
  5. /// Represents an object that is both an observable sequence as well as an observer.
  6. /// </summary>
  7. /// <typeparam name="T">The type of the elements processed by the subject.</typeparam>
  8. public interface ISubject<T> : ISubject<T, T>
  9. {
  10. }
  11. }