NopObserver.cs 274 B

12345678910111213141516171819
  1. using System;
  2. namespace Tests
  3. {
  4. public class NopObserver<T> : IObserver<T>
  5. {
  6. public void OnCompleted()
  7. {
  8. }
  9. public void OnError(Exception error)
  10. {
  11. }
  12. public void OnNext(T value)
  13. {
  14. }
  15. }
  16. }