Uses of Interface
org.springframework.data.mongodb.core.bulk.Bulk.BulkBuilder
Packages that use Bulk.BulkBuilder
-
Uses of Bulk.BulkBuilder in org.springframework.data.mongodb.core.bulk
Methods in org.springframework.data.mongodb.core.bulk that return Bulk.BulkBuilderModifier and TypeMethodDescriptionstatic Bulk.BulkBuilderBulk.builder()Returns a newBulk.BulkBuilderto define and build aBulk.<T> Bulk.BulkBuilderBulk.BulkBuilder.inCollection(Class<T> type, String collectionName, Consumer<Bulk.BulkSpec> builderCustomizer) Adds operations for the collection mapped to the given domain type within a scoped consumer.<T> Bulk.BulkBuilderBulk.BulkBuilder.inCollection(Class<T> type, Consumer<Bulk.BulkSpec> builderCustomizer) Adds operations for the collection mapped to the given domain type within a scoped consumer.Bulk.BulkBuilder.inCollection(String collectionName, Consumer<Bulk.BulkSpec> builderCustomizer) Adds operations for the given collection name within a scoped consumer.Method parameters in org.springframework.data.mongodb.core.bulk with type arguments of type Bulk.BulkBuilderModifier and TypeMethodDescriptionstatic BulkBulk.create(Consumer<Bulk.BulkBuilder> builderCustomizer) Creates a newBulkby applying the given builder customizer to a freshBulk.BulkBuilder.