-
Notifications
You must be signed in to change notification settings - Fork 7.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BufferWithSize with Backpressure Support #1507
BufferWithSize with Backpressure Support #1507
Conversation
RxJava-pull-requests #1433 SUCCESS |
if (n == Long.MAX_VALUE) { | ||
producer.request(Long.MAX_VALUE); | ||
} else { | ||
producer.request(n * count); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could theoretically be larger than Long.MAX_VALUE
RxJava-pull-requests #1463 SUCCESS |
isn't that potentially more than required? The number required is exactly |
The number of the first request is |
Gotcha, thanks
|
BufferWithSize with Backpressure Support
Thank you. |
For #1479