All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.kotlin.ext.mongo.BulkWriteOptions.kt Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
package io.vertx.kotlin.ext.mongo

import io.vertx.ext.mongo.BulkWriteOptions
import io.vertx.ext.mongo.WriteOption

/**
 * A function providing a DSL for building [io.vertx.ext.mongo.BulkWriteOptions] objects.
 *
 * Options for configuring bulk write operations.
 *
 * @param ordered  Set the ordered option
 * @param writeOption  Set the write option
 *
 * 

* NOTE: This function has been automatically generated from the [io.vertx.ext.mongo.BulkWriteOptions original] using Vert.x codegen. */ fun BulkWriteOptions( ordered: Boolean? = null, writeOption: WriteOption? = null): BulkWriteOptions = io.vertx.ext.mongo.BulkWriteOptions().apply { if (ordered != null) { this.setOrdered(ordered) } if (writeOption != null) { this.setWriteOption(writeOption) } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy