2
0

ISubject.cs 286 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace UniRx
  5. {
  6. public interface ISubject<TSource, TResult> : IObserver<TSource>, IObservable<TResult>
  7. {
  8. }
  9. public interface ISubject<T> : ISubject<T, T>, IObserver<T>, IObservable<T>
  10. {
  11. }
  12. }