Reputation: 1815
BulkWriteOperation builder = coll.initializeOrderedBulkOperation();
initializeOrderedBulkOperation() is missing in version 3.0.2, but it is found in version 2.13.2 ?
Is the method in 3.0.2 under a different name ?
I am using maven for the mongo dependency
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<!--Or version 3.0.2-->
<version>2.13.2</version>
</dependency>
Upvotes: 2
Views: 139
Reputation: 6233
Bulk operations are supported. Take a look at the reference guide for examples.
Upvotes: 2