-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Issue/5739 smaller operator creation #5742
Merged
benlesh
merged 12 commits into
ReactiveX:master
from
benlesh:issue/5739-smaller-operator-creation
Sep 23, 2020
Merged
Issue/5739 smaller operator creation #5742
benlesh
merged 12 commits into
ReactiveX:master
from
benlesh:issue/5739-smaller-operator-creation
Sep 23, 2020
Conversation
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
benlesh
commented
Sep 23, 2020
benlesh
commented
Sep 23, 2020
benlesh
commented
Sep 23, 2020
benlesh
commented
Sep 23, 2020
benlesh
commented
Sep 23, 2020
cartant
requested changes
Sep 23, 2020
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.
LGTM, but there are a bunch of return
statements in the operators that I think aren't needed. And I have a few nitpicks.
tonivj5
reviewed
Sep 23, 2020
HA! While fixing the stuff @cartant pointed out, I updated |
cartant
approved these changes
Sep 23, 2020
…in a selector appropriately - Also refactors multicast to use the new `operate` mechanism.
…scription in operate.
…tions can no longer be returned This will help force us to make sure we are using the subscriber and subscription chaining in the most efficient way possible. Although it could result in anti-patterns where users return a function that calls unsubscribe on a subscription if we release this to the public.
benlesh
force-pushed
the
issue/5739-smaller-operator-creation
branch
from
September 23, 2020 19:54
f73e056
to
7c694b6
Compare
17 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
operate
function for creating operatorslift
andwrappedLift
helpers.publishReplay
et al, where an error thrown in the selector function was being thrown externally instead of send to the subscriber via an error notification.Further size reduction.
57K -> 55K57K -> 54K approximately