-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Create and document Java sync improved bulk write API #1458
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
Changes from 2 commits
48b9614
af854ed
1eb7466
5567324
644d561
f566303
3d13ffd
cf46b46
e049234
0e16427
0d518d8
6b77f78
fdb90d2
39386fe
f67af3f
395af7a
a11e5f6
f41ed59
4846e0b
dbf9a26
21bb22e
f026ee3
3584de5
5a17ea0
8e1d770
e973615
e33f592
301a2ba
6f01e61
c3224e9
c057390
dbb6ec8
f781bca
3fc86bb
86e5234
fb134f8
a4bf4d0
2837235
b6702a6
24ce6db
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
|
||
/** | ||
* The result of a successful or partially successful client-level bulk write operation. | ||
* Note that if only some of the {@linkplain ClientWriteModel individual write operations} succeed, | ||
* Note that if only some of the {@linkplain ClientNamespacedWriteModel individual write operations} succeed, | ||
* or if there are {@link WriteConcernError}s, then the successful partial result | ||
* is still accessible via {@link ClientBulkWriteException#getPartialResult()}. | ||
* | ||
|
@@ -100,7 +100,7 @@ public interface ClientBulkWriteResult { | |
interface Verbose { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While I would suggest noun-based naming, just couple of examples: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done in b6702a6. |
||
/** | ||
* The indexed {@link ClientInsertOneResult}s. | ||
* The {@linkplain Map#keySet() keys} are the indexes of the corresponding {@link ClientWriteModel}s | ||
* The {@linkplain Map#keySet() keys} are the indexes of the corresponding {@link ClientNamespacedWriteModel}s | ||
* in the client-level bulk write operation. | ||
* <p> | ||
* There are no guarantees on mutability or iteration order of the {@link Map} returned.</p> | ||
|
@@ -112,7 +112,7 @@ interface Verbose { | |
|
||
/** | ||
* The indexed {@link ClientUpdateResult}s. | ||
* The {@linkplain Map#keySet() keys} are the indexes of the corresponding {@link ClientWriteModel}s | ||
* The {@linkplain Map#keySet() keys} are the indexes of the corresponding {@link ClientNamespacedWriteModel}s | ||
* in the client-level bulk write operation. | ||
* <p> | ||
* There are no guarantees on mutability or iteration order of the {@link Map} returned.</p> | ||
|
@@ -124,7 +124,7 @@ interface Verbose { | |
|
||
/** | ||
* The indexed {@link ClientDeleteResult}s. | ||
* The {@linkplain Map#keySet() keys} are the indexes of the corresponding {@link ClientWriteModel}s | ||
* The {@linkplain Map#keySet() keys} are the indexes of the corresponding {@link ClientNamespacedWriteModel}s | ||
* in the client-level bulk write operation. | ||
* <p> | ||
* There are no guarantees on mutability or iteration order of the {@link Map} returned.</p> | ||
|
Uh oh!
There was an error while loading. Please reload this page.