Rx: Combine ThrottleFirst and Sample operators
问题 Given a source observable S, how can I ask RxJava / Rx to produce observable D, that: Emits first item from S without any delay Waits at least T seconds after emitting every item and before emitting next item L, where L is the last item emitted by S during the waiting period Emits the next item immediately after it appers in S, if S didn't produce any item during the waiting period T (from the point #2) Marble diagram: I thought to use: Sample operator, but it does not satisfy the requirement