RxJava 有节流吗?

Is there throttle in RxJava?

我正在尝试在 RxJava 中找到一个以特定方式节流的运算符:

我似乎找不到符合此行为的。我查看了一些类似的,但其中 none 似乎是正确的。

是否有任何我可以使用的 RxJava 操作符匹配这个?这似乎是一个有用的用例。

throttleFirst was what I was looking for. I didn't realize initially because most of the documentation on the internet is slightly off (http://reactivex.io/documentation/operators/sample.html , https://github.com/ReactiveX/RxJava/wiki/Filtering-Observables)。 Javadocs 是正确的,我在哪里找到了我要找的东西。