3

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.

ferpar1988
  • 596
  • 2
  • 5
  • 17

1 Answers1

1

The opposite of takeUntil is skipUntil.

Dan Lew
  • 85,990
  • 32
  • 182
  • 176
  • 1
    Thanks. That what i was looking for except I also want it to buffer these items until an item is observed from the other observable. I don't want them get skipped. Is it possible? – ferpar1988 Feb 09 '16 at 18:44