forked from reactor/reactor-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Take(n) now behaves as take(n,true)/limitRequest (reactor#2969)
This commit changes the behavior of `take(long)` to limit the request made to upstream like the now deprecated operator `limitRequest`, as documented in the deprecation notice. Most usages of `take(long)` in the codebase have been switched to use `take(long, false)` instead to keep relying on the old behavior. All usages of `limitRequest(n)` have been turned into `take(n)`. Finally, the javadocs, marble diagrams and reference guide have been updated to reflect the new behavior. Fixes reactor#2690.
- Loading branch information
1 parent
bf63f7f
commit 96bb61f
Showing
64 changed files
with
313 additions
and
474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.