Add Kotlin Bulk Write API#1591
Merged
vbabanin merged 5 commits intomongodb:JAVA-4586_bulk-writefrom Jan 3, 2025
Merged
Conversation
- Add sync and coroutine Bulk Write API. - Enable unified spec tests. JAVA-5532
JAVA-5532
JAVA-5532
JAVA-5532
JAVA-5532
vbabanin
commented
Jan 3, 2025
Comment on lines
+320
to
+322
| * Executes a client-level bulk write operation. This method is functionally equivalent to | ||
| * [bulkWrite(models, options)][bulkWrite] with the | ||
| * [default options][ClientBulkWriteOptions.clientBulkWriteOptions]. |
Member
Author
There was a problem hiding this comment.
Kotlin does not support referencing methods with parameters, as noted here: KT-15984 and in their Kotlin Documentation.
Note that KDoc does not have any syntax for resolving overloaded members in links. Since Kotlin's documentation generation tool puts the documentation for all overloads of a function on the same page, identifying a specific overloaded function is not required for the link to work.
Therefore, links in KDoc are written with additional descriptive text to clarify the context of the reference.
katcharov
approved these changes
Jan 3, 2025
Collaborator
katcharov
left a comment
There was a problem hiding this comment.
LGTM
I did not check or diff the docs, since they were pasted in.
This file contains hidden or 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
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.
Primary review: @katcharov
Secondary (optional): @stIncMale
JAVA-5532