Uses of Interface
org.springframework.data.mongodb.core.BulkOperations
Packages that use BulkOperations
-
Uses of BulkOperations in org.springframework.data.mongodb.core
Methods in org.springframework.data.mongodb.core that return BulkOperationsModifier and TypeMethodDescriptionMongoOperations.bulkOps(BulkOperations.BulkMode mode, Class<?> entityType) Returns a newBulkOperationsfor the given entity type.MongoOperations.bulkOps(BulkOperations.BulkMode mode, Class<?> entityType, String collectionName) Returns a newBulkOperationsfor the given entity type and collection name.MongoOperations.bulkOps(BulkOperations.BulkMode mode, String collectionName) Returns a newBulkOperationsfor the given collection.MongoTemplate.bulkOps(BulkOperations.BulkMode bulkMode, Class<?> entityClass) MongoTemplate.bulkOps(BulkOperations.BulkMode mode, Class<?> entityType, String collectionName) MongoTemplate.bulkOps(BulkOperations.BulkMode mode, String collectionName) Add a single insert to the bulk operation.Add a list of inserts to the bulk operation.Add a list of remove operations to the bulk operation.Add a single remove operation to the bulk operation.default BulkOperationsBulkOperations.replaceOne(Query query, Object replacement) Add a single replace operation to the bulk operation.BulkOperations.replaceOne(Query query, Object replacement, FindAndReplaceOptions options) Add a single replace operation to the bulk operation.BulkOperations.updateMulti(List<Pair<Query, UpdateDefinition>> updates) Add a list of updates to the bulk operation.default BulkOperationsBulkOperations.updateMulti(Query query, Update update) Add a single update to the bulk operation.BulkOperations.updateMulti(Query query, UpdateDefinition update) Add a single update to the bulk operation.BulkOperations.updateOne(List<Pair<Query, UpdateDefinition>> updates) Add a list of updates to the bulk operation.default BulkOperationsAdd a single update to the bulk operation.BulkOperations.updateOne(Query query, UpdateDefinition update) Add a single update to the bulk operation.Add a list of upserts to the bulk operation.default BulkOperationsAdd a single upsert to the bulk operation.BulkOperations.upsert(Query query, UpdateDefinition update) Add a single upsert to the bulk operation.