Uses of Class
io.vertx.ext.mongo.DistinctOptions
-
-
Uses of DistinctOptions in io.vertx.ext.mongo
Methods in io.vertx.ext.mongo that return DistinctOptions Modifier and Type Method Description DistinctOptionsDistinctOptions. setCollation(CollationOptions collation)Optional.Methods in io.vertx.ext.mongo with parameters of type DistinctOptions Modifier and Type Method Description Future<JsonArray>MongoClient. distinct(String collection, String fieldName, String resultClassname, DistinctOptions distinctOptions)Gets the distinct values of the specified field name.ReadStream<JsonObject>MongoClient. distinctBatch(String collection, String fieldName, String resultClassname, DistinctOptions distinctOptions)Gets the distinct values of the specified field name.ReadStream<JsonObject>MongoClient. distinctBatchWithQuery(String collection, String fieldName, String resultClassname, JsonObject query, int batchSize, DistinctOptions distinctOptions)Gets the distinct values of the specified field name filtered by specified query.ReadStream<JsonObject>MongoClient. distinctBatchWithQuery(String collection, String fieldName, String resultClassname, JsonObject query, DistinctOptions distinctOptions)Gets the distinct values of the specified field name filtered by specified query.Future<JsonArray>MongoClient. distinctWithQuery(String collection, String fieldName, String resultClassname, JsonObject query, DistinctOptions distinctOptions)Gets the distinct values of the specified field name filtered by specified query.Constructors in io.vertx.ext.mongo with parameters of type DistinctOptions Constructor Description DistinctOptions(DistinctOptions distinctOptions)
-