Browse Source

update test to use types from diff libs

Oren Novotny 9 years ago
parent
commit
53f52f935e
1 changed files with 6 additions and 0 deletions
  1. 6 0
      Rx.NET/Integration/BindingRedirects/CommonCodeInPcl/Class1.cs

+ 6 - 0
Rx.NET/Integration/BindingRedirects/CommonCodeInPcl/Class1.cs

@@ -1,16 +1,22 @@
 using System;
 using System.Collections.Generic;
 using System.Linq;
+using System.Reactive.Disposables;
 using System.Reactive.Linq;
+using System.Reactive.Subjects;
 using System.Text;
 
 namespace CommonCodeInPcl
 {
     public class Class1
     {
+        ISubject<Class1> subject;
+        IDisposable disposable = Disposable.Empty;
         public static IObservable<int> GetFoo()
         {
+
             return Observable.Interval(TimeSpan.FromMinutes(1)).Select(_ => 3);
+
         }
     }
 }