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

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

package io.vertx.kotlin.redis.op

import io.vertx.redis.op.GeoRadiusOptions

/**
 * A function providing a DSL for building [io.vertx.redis.op.GeoRadiusOptions] objects.
 *
 *
 * @param count  Set the radius options limit the result count.
 * @param withCoord  Set the radius options to be coordinate based.
 * @param withDist  Set the radius options to be distance based.
 * @param withHash  Set the radius options to be hash based.
 *
 * 

* NOTE: This function has been automatically generated from the [io.vertx.redis.op.GeoRadiusOptions original] using Vert.x codegen. */ fun GeoRadiusOptions( count: Long? = null, withCoord: Boolean? = null, withDist: Boolean? = null, withHash: Boolean? = null): GeoRadiusOptions = io.vertx.redis.op.GeoRadiusOptions().apply { if (count != null) { this.setCount(count) } if (withCoord != null) { this.setWithCoord(withCoord) } if (withDist != null) { this.setWithDist(withDist) } if (withHash != null) { this.setWithHash(withHash) } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy