We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34cd1a6 commit afe2b41Copy full SHA for afe2b41
src/main/java/rx/internal/operators/OperatorDebounceWithTime.java
@@ -62,6 +62,12 @@ public Subscriber<? super T> call(final Subscriber<? super T> child) {
62
return new Subscriber<T>(child) {
63
final DebounceState<T> state = new DebounceState<T>();
64
final Subscriber<?> self = this;
65
+
66
+ @Override
67
+ public void onStart() {
68
+ request(Long.MAX_VALUE);
69
+ }
70
71
@Override
72
public void onNext(final T t) {
73
0 commit comments