-
Notifications
You must be signed in to change notification settings - Fork 4.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
Core Data: Add types to createBatch
#39475
Open
dmsnell
wants to merge
1
commit into
trunk
Choose a base branch
from
types/core-data-create-batch
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
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
Size Change: -9 B (0%) Total Size: 1.16 MB
ℹ️ View Unchanged
|
adamziel
force-pushed
the
types/core-data-create-batch
branch
from
March 16, 2022 15:36
7fe17d8
to
5297db7
Compare
Batch API is experimental, so it might be a good opportunity to see if |
dmsnell
force-pushed
the
types/core-data-create-batch
branch
from
March 17, 2022 01:28
5297db7
to
55ee54e
Compare
The static analysis error doesn't seem to make sense:
That type is there and my IDE even autocompletes it. Any ideas what went wrong here? |
Types the `createBatch` and default batch processor in preparation for more extensive typing work in `core/data`.
adamziel
force-pushed
the
types/core-data-create-batch
branch
from
March 17, 2022 09:51
55ee54e
to
f4da9cb
Compare
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.
Description
See #28210 which introduced this revision of the batch system.
Part of #39211 and the work of prepping
core/data
for useful types.Types the
createBatch
and default batch processor inpreparation for more extensive typing work in
core/data
.Testing
Apart from a few renames there should only be a single code change in this
patch: a fix in
ObservableSet
that wasn't exploited.Set
which doesn't allow that.Set
.ObservableSet
isn't exported and was only ever constructed with no constructor args.Please audit the types and make sure that some actions which utilize the batch system complete as expected.
Type of changes
These are almost entirely type-level changes apart from the noted fix.