ferpar1988
ferpar1988

Reputation: 606

Rxjava takeWhen operator

I was looking an rxjava operator which waits another observable emits an item to observe an item. I can do it with flatMap and map operators but I just wonder if there is an operator which does this job. I am looking for opposite of takeUntil operator. I also want it to buffer items while its waiting the other observable.

Upvotes: 3

Views: 528

Answers (1)

Dan Lew
Dan Lew

Reputation: 87440

The opposite of takeUntil is skipUntil.

Upvotes: 1

Related Questions