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

io.vertx.kotlin.redis.op.ScanOptions.kt Maven / Gradle / Ivy

The newest version!
package io.vertx.kotlin.redis.op

import io.vertx.redis.op.ScanOptions

/**
 * A function providing a DSL for building [io.vertx.redis.op.ScanOptions] objects.
 *
 *
 * @param count 
 * @param match 
 *
 * 

* NOTE: This function has been automatically generated from the [io.vertx.redis.op.ScanOptions original] using Vert.x codegen. */ fun ScanOptions( count: Int? = null, match: String? = null): ScanOptions = io.vertx.redis.op.ScanOptions().apply { if (count != null) { this.setCount(count) } if (match != null) { this.setMatch(match) } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy