We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There exist special overloads of the exact-boundary buffer/window operators that takes a supplier of a source. (Example JavaDocs).
buffer
window
This supplier is called over and over once the previous boundary signaled an item or completed.
I'm not sure if this type of boundary was in use at all. It can be emulated with the plain sourced versiong:
source.buffer(Observable.defer(supplier).take(1).repeat())
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
There exist special overloads of the exact-boundary
buffer
/window
operators that takes a supplier of a source. (Example JavaDocs).This supplier is called over and over once the previous boundary signaled an item or completed.
I'm not sure if this type of boundary was in use at all. It can be emulated with the plain sourced versiong:
The text was updated successfully, but these errors were encountered: