forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntervalDemo.java
More file actions
42 lines (34 loc) · 1.11 KB
/
IntervalDemo.java
File metadata and controls
42 lines (34 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package rx;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;
import org.junit.Ignore;
import org.junit.Test;
import rx.util.functions.Action0;
import rx.util.functions.Action1;
@Ignore // since this doesn't do any automatic testing
public class IntervalDemo {
@Test public void demoInterval() throws Exception {
testLongObservable(Observable.interval(500, TimeUnit.MILLISECONDS).take(4), "demoInterval");
}
public void testLongObservable(Observable<Long> o, final String testname) throws Exception {
final List<Long> l = new ArrayList<Long>();
Action1<Long> onNext = new Action1<Long>() {
public void call(Long i) {
l.add(i);
System.out.println(testname + " got " + i);
}
};
Action1<Throwable> onError = new Action1<Throwable>() {
public void call(Throwable t) { t.printStackTrace(); }
};
Action0 onComplete = new Action0() {
public void call() {
System.out.println(testname + " complete");
}
};
o.subscribe(onNext, onError, onComplete);
// need to wait, otherwise JUnit kills the thread of interval()
Thread.sleep(2500);
}
}