|
Similar to what we did for the crud examples, if all the drivers could implement the following changestream examples which the docs team can extract:
We'll use the inventory collection.
The examples are from the java examples from Aly's POD.
// Start Changestream Example 1
|
|
MongoCursor<Document> cursor = inventory.watch().iterator();
|
Document next = cursor.next();
|
|
// End Changestream Example 1
|
// Start Changestream Example 2
|
|
MongoCursor<Document> cursor =
|
inventory.watch().fullDocument(FullDocument.UPDATE_LOOKUP).iterator();
|
Document next = cursor.next();
|
|
// End Changestream Example 2
|
// Start Changestream Example 3
|
|
Document resumeToken = next.get("_id", Document.class);
|
MongoCursor<Document> cursor = inventory.watch().resumeAfter(resumeToken).iterator();
|
cursor.next();
|
|
// End Changestream Example 3
|
cc: behackett alyson.cabral rathi.gnanasekaran ravind.kumar
|