Quiz

Take this quiz to test how well you have grasped the concepts of reactive modeling.

We'll cover the following...
Technical Quiz
1.

Which of the following blocking operators should replace X in the code below?

Observable<Long> source =  Observable.interval(1, TimeUnit.SECONDS).take(10);;        
Iterable<Long> iter = source.X;         
for (Long i: iter) {System.out.println(i);}
A.

blockingSingle()

B.

blockingNext()

C.

blockingSubscribe()

D.

blockingLast()


1 / 5