Skip navigation links
C D E F G H I M N R S T U V W 

C

close() - Method in interface io.vertx.ext.mongo.MongoClient
Close the client and release its resources
close() - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Close the client and release its resources
count(String, JsonObject, Handler<AsyncResult<Long>>) - Method in interface io.vertx.ext.mongo.MongoClient
Count matching documents in a collection.
count(String, JsonObject, Handler<AsyncResult<Long>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Count matching documents in a collection.
countObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Count matching documents in a collection.
createCollection(String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Create a new collection
createCollection(String, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Create a new collection
createCollectionObservable(String) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Create a new collection
createNonShared(Vertx, JsonObject) - Static method in interface io.vertx.ext.mongo.MongoClient
Create a Mongo client which maintains its own data source.
createNonShared(Vertx, JsonObject) - Static method in class io.vertx.rxjava.ext.mongo.MongoClient
Create a Mongo client which maintains its own data source.
createShared(Vertx, JsonObject, String) - Static method in interface io.vertx.ext.mongo.MongoClient
Create a Mongo client which shares its data source with any other Mongo clients created with the same data source name
createShared(Vertx, JsonObject) - Static method in interface io.vertx.ext.mongo.MongoClient
createShared(Vertx, JsonObject, String) - Static method in class io.vertx.rxjava.ext.mongo.MongoClient
Create a Mongo client which shares its data source with any other Mongo clients created with the same data source name
createShared(Vertx, JsonObject) - Static method in class io.vertx.rxjava.ext.mongo.MongoClient

D

DEFAULT_DB_NAME - Static variable in interface io.vertx.ext.mongo.MongoClient
The name of the default database
DEFAULT_DOCMATCHED - Static variable in class io.vertx.ext.mongo.MongoClientUpdateResult
The default value is 0, signifying no match
DEFAULT_DOCMODIFIED - Static variable in class io.vertx.ext.mongo.MongoClientUpdateResult
The default value is 0, signifying no document is modified
DEFAULT_LIMIT - Static variable in class io.vertx.ext.mongo.FindOptions
The default value of limit = -1, signifying no limit
DEFAULT_MULTI - Static variable in class io.vertx.ext.mongo.UpdateOptions
The default value of multi = false
DEFAULT_POOL_NAME - Static variable in interface io.vertx.ext.mongo.MongoClient
The name of the default pool
DEFAULT_REMOVEDCOUNT - Static variable in class io.vertx.ext.mongo.MongoClientDeleteResult
The default value is 0, signifying no document is removed
DEFAULT_SKIP - Static variable in class io.vertx.ext.mongo.FindOptions
The default value of skip = 0
DEFAULT_UPSERT - Static variable in class io.vertx.ext.mongo.UpdateOptions
The default value of upsert = false
distinct(String, String, String, Handler<AsyncResult<JsonArray>>) - Method in interface io.vertx.ext.mongo.MongoClient
Gets the distinct values of the specified field name.
distinct(String, String, String, Handler<AsyncResult<JsonArray>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Gets the distinct values of the specified field name.
distinctBatch(String, String, String, Handler<AsyncResult<JsonObject>>) - Method in interface io.vertx.ext.mongo.MongoClient
Gets the distinct values of the specified field name.
distinctBatch(String, String, String, Handler<AsyncResult<JsonObject>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Gets the distinct values of the specified field name.
distinctBatchObservable(String, String, String) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Gets the distinct values of the specified field name.
distinctObservable(String, String, String) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Gets the distinct values of the specified field name.
DOC_MATCHED - Static variable in class io.vertx.ext.mongo.MongoClientUpdateResult
Constant to be used when storing and retrieving Json for documents matched.
DOC_MODIFIED - Static variable in class io.vertx.ext.mongo.MongoClientUpdateResult
Constant to be used when storing and retrieving Json for documents modified.
dropCollection(String, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Drop a collection
dropCollection(String, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Drop a collection
dropCollectionObservable(String) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Drop a collection

E

equals(Object) - Method in class io.vertx.ext.mongo.FindOptions
 
equals(Object) - Method in class io.vertx.ext.mongo.MongoClientDeleteResult
 
equals(Object) - Method in class io.vertx.ext.mongo.MongoClientUpdateResult
 
equals(Object) - Method in class io.vertx.ext.mongo.UpdateOptions
 

F

find(String, JsonObject, Handler<AsyncResult<List<JsonObject>>>) - Method in interface io.vertx.ext.mongo.MongoClient
Find matching documents in the specified collection
find(String, JsonObject, Handler<AsyncResult<List<JsonObject>>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find matching documents in the specified collection
findBatch(String, JsonObject, Handler<AsyncResult<JsonObject>>) - Method in interface io.vertx.ext.mongo.MongoClient
Find matching documents in the specified collection.
findBatch(String, JsonObject, Handler<AsyncResult<JsonObject>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find matching documents in the specified collection.
findBatchObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find matching documents in the specified collection.
findBatchWithOptions(String, JsonObject, FindOptions, Handler<AsyncResult<JsonObject>>) - Method in interface io.vertx.ext.mongo.MongoClient
Find matching documents in the specified collection, specifying options.
findBatchWithOptions(String, JsonObject, FindOptions, Handler<AsyncResult<JsonObject>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find matching documents in the specified collection, specifying options.
findBatchWithOptionsObservable(String, JsonObject, FindOptions) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find matching documents in the specified collection, specifying options.
findObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find matching documents in the specified collection
findOne(String, JsonObject, JsonObject, Handler<AsyncResult<JsonObject>>) - Method in interface io.vertx.ext.mongo.MongoClient
Find a single matching document in the specified collection
findOne(String, JsonObject, JsonObject, Handler<AsyncResult<JsonObject>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find a single matching document in the specified collection
findOneObservable(String, JsonObject, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find a single matching document in the specified collection
FindOptions - Class in io.vertx.ext.mongo
Options used to configure find operations.
FindOptions() - Constructor for class io.vertx.ext.mongo.FindOptions
Default constructor
FindOptions(FindOptions) - Constructor for class io.vertx.ext.mongo.FindOptions
Copy constructor
FindOptions(JsonObject) - Constructor for class io.vertx.ext.mongo.FindOptions
Constructor from JSON
findWithOptions(String, JsonObject, FindOptions, Handler<AsyncResult<List<JsonObject>>>) - Method in interface io.vertx.ext.mongo.MongoClient
Find matching documents in the specified collection, specifying options
findWithOptions(String, JsonObject, FindOptions, Handler<AsyncResult<List<JsonObject>>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find matching documents in the specified collection, specifying options
findWithOptionsObservable(String, JsonObject, FindOptions) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Find matching documents in the specified collection, specifying options

G

getCollections(Handler<AsyncResult<List<String>>>) - Method in interface io.vertx.ext.mongo.MongoClient
Get a list of all collections in the database.
getCollections(Handler<AsyncResult<List<String>>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Get a list of all collections in the database.
getCollectionsObservable() - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Get a list of all collections in the database.
getDelegate() - Method in class io.vertx.rxjava.ext.mongo.MongoClient
 
getDocMatched() - Method in class io.vertx.ext.mongo.MongoClientUpdateResult
Get the number of documents that're matched
getDocModified() - Method in class io.vertx.ext.mongo.MongoClientUpdateResult
Get the number of documents that're modified
getDocUpsertedId() - Method in class io.vertx.ext.mongo.MongoClientUpdateResult
Get the document id that's upserted
getFields() - Method in class io.vertx.ext.mongo.FindOptions
Get the fields
getLimit() - Method in class io.vertx.ext.mongo.FindOptions
Get the limit - this determines the max number of rows to return
getRemovedCount() - Method in class io.vertx.ext.mongo.MongoClientDeleteResult
Get the number of removed documents
getSkip() - Method in class io.vertx.ext.mongo.FindOptions
Get the skip.
getSort() - Method in class io.vertx.ext.mongo.FindOptions
Get the sort document
getWriteOption() - Method in class io.vertx.ext.mongo.UpdateOptions
Get the write option.

H

hashCode() - Method in class io.vertx.ext.mongo.FindOptions
 
hashCode() - Method in class io.vertx.ext.mongo.MongoClientDeleteResult
 
hashCode() - Method in class io.vertx.ext.mongo.MongoClientUpdateResult
 
hashCode() - Method in class io.vertx.ext.mongo.UpdateOptions
 

I

ID_FIELD - Static variable in class io.vertx.ext.mongo.MongoClientUpdateResult
Constant to be used when storing and retrieving the _id within upserted_id
insert(String, JsonObject, Handler<AsyncResult<String>>) - Method in interface io.vertx.ext.mongo.MongoClient
Insert a document in the specified collection
insert(String, JsonObject, Handler<AsyncResult<String>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Insert a document in the specified collection
insertObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Insert a document in the specified collection
insertWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<String>>) - Method in interface io.vertx.ext.mongo.MongoClient
Insert a document in the specified collection with the specified write option
insertWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<String>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Insert a document in the specified collection with the specified write option
insertWithOptionsObservable(String, JsonObject, WriteOption) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Insert a document in the specified collection with the specified write option
io.vertx.ext.mongo - package io.vertx.ext.mongo
= Vert.x MongoDB Client A Vert.x client allowing applications to interact with a MongoDB instance, whether that's saving, retrieving, searching, or deleting documents.
io.vertx.rxjava.ext.mongo - package io.vertx.rxjava.ext.mongo
 
isMulti() - Method in class io.vertx.ext.mongo.UpdateOptions
Get whether multi is enabled.
isUpsert() - Method in class io.vertx.ext.mongo.UpdateOptions
Get whether upsert is enabled

M

MongoClient - Interface in io.vertx.ext.mongo
A Vert.x service used to interact with MongoDB server instances.
MongoClient - Class in io.vertx.rxjava.ext.mongo
A Vert.x service used to interact with MongoDB server instances.
MongoClient(MongoClient) - Constructor for class io.vertx.rxjava.ext.mongo.MongoClient
 
MongoClientDeleteResult - Class in io.vertx.ext.mongo
Result propagated from mongodb driver delete result.
MongoClientDeleteResult() - Constructor for class io.vertx.ext.mongo.MongoClientDeleteResult
Default constructor
MongoClientDeleteResult(long) - Constructor for class io.vertx.ext.mongo.MongoClientDeleteResult
Constructor that specify the number of documents removed
MongoClientDeleteResult(MongoClientDeleteResult) - Constructor for class io.vertx.ext.mongo.MongoClientDeleteResult
Copy constructor
MongoClientDeleteResult(JsonObject) - Constructor for class io.vertx.ext.mongo.MongoClientDeleteResult
Constructor form JSON
MongoClientUpdateResult - Class in io.vertx.ext.mongo
Result propagated from mongodb driver update result.
MongoClientUpdateResult() - Constructor for class io.vertx.ext.mongo.MongoClientUpdateResult
Default constructor
MongoClientUpdateResult(long, JsonObject, long) - Constructor for class io.vertx.ext.mongo.MongoClientUpdateResult
Constructor to specify the status of the operation.
MongoClientUpdateResult(MongoClientUpdateResult) - Constructor for class io.vertx.ext.mongo.MongoClientUpdateResult
Copy constructor
MongoClientUpdateResult(JsonObject) - Constructor for class io.vertx.ext.mongo.MongoClientUpdateResult
Constructor from JSON

N

newInstance(MongoClient) - Static method in class io.vertx.rxjava.ext.mongo.MongoClient
 

R

remove(String, JsonObject, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Deprecated.
remove(String, JsonObject, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove matching documents from a collection
REMOVED_COUNT - Static variable in class io.vertx.ext.mongo.MongoClientDeleteResult
Constant to be used when storing and retrieving Json for documents removed.
removeDocument(String, JsonObject, Handler<AsyncResult<MongoClientDeleteResult>>) - Method in interface io.vertx.ext.mongo.MongoClient
Remove a single matching document from a collection and return the handler with MongoClientDeleteResult result
removeDocument(String, JsonObject, Handler<AsyncResult<MongoClientDeleteResult>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove a single matching document from a collection and return the handler with MongoClientDeleteResult result
removeDocumentObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove a single matching document from a collection and return the handler with MongoClientDeleteResult result
removeDocuments(String, JsonObject, Handler<AsyncResult<MongoClientDeleteResult>>) - Method in interface io.vertx.ext.mongo.MongoClient
Remove matching documents from a collection and return the handler with MongoClientDeleteResult result
removeDocuments(String, JsonObject, Handler<AsyncResult<MongoClientDeleteResult>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove matching documents from a collection and return the handler with MongoClientDeleteResult result
removeDocumentsObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove matching documents from a collection and return the handler with MongoClientDeleteResult result
removeDocumentsWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<MongoClientDeleteResult>>) - Method in interface io.vertx.ext.mongo.MongoClient
Remove matching documents from a collection with the specified write option and return the handler with MongoClientDeleteResult result
removeDocumentsWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<MongoClientDeleteResult>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove matching documents from a collection with the specified write option and return the handler with MongoClientDeleteResult result
removeDocumentsWithOptionsObservable(String, JsonObject, WriteOption) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove matching documents from a collection with the specified write option and return the handler with MongoClientDeleteResult result
removeDocumentWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<MongoClientDeleteResult>>) - Method in interface io.vertx.ext.mongo.MongoClient
Remove a single matching document from a collection with the specified write option and return the handler with MongoClientDeleteResult result
removeDocumentWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<MongoClientDeleteResult>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove a single matching document from a collection with the specified write option and return the handler with MongoClientDeleteResult result
removeDocumentWithOptionsObservable(String, JsonObject, WriteOption) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove a single matching document from a collection with the specified write option and return the handler with MongoClientDeleteResult result
removeObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove matching documents from a collection
removeOne(String, JsonObject, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Deprecated.
removeOne(String, JsonObject, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove a single matching document from a collection
removeOneObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove a single matching document from a collection
removeOneWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Deprecated.
removeOneWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove a single matching document from a collection with the specified write option
removeOneWithOptionsObservable(String, JsonObject, WriteOption) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove a single matching document from a collection with the specified write option
removeWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Deprecated.
removeWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove matching documents from a collection with the specified write option
removeWithOptionsObservable(String, JsonObject, WriteOption) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Remove matching documents from a collection with the specified write option
replace(String, JsonObject, JsonObject, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Deprecated.
replace(String, JsonObject, JsonObject, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Replace matching documents in the specified collection
replaceDocuments(String, JsonObject, JsonObject, Handler<AsyncResult<MongoClientUpdateResult>>) - Method in interface io.vertx.ext.mongo.MongoClient
Replace matching documents in the specified collection and return the handler with MongoClientUpdateResult result
replaceDocuments(String, JsonObject, JsonObject, Handler<AsyncResult<MongoClientUpdateResult>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Replace matching documents in the specified collection and return the handler with MongoClientUpdateResult result
replaceDocumentsObservable(String, JsonObject, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Replace matching documents in the specified collection and return the handler with MongoClientUpdateResult result
replaceDocumentsWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler<AsyncResult<MongoClientUpdateResult>>) - Method in interface io.vertx.ext.mongo.MongoClient
Replace matching documents in the specified collection, specifying options and return the handler with MongoClientUpdateResult result
replaceDocumentsWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler<AsyncResult<MongoClientUpdateResult>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Replace matching documents in the specified collection, specifying options and return the handler with MongoClientUpdateResult result
replaceDocumentsWithOptionsObservable(String, JsonObject, JsonObject, UpdateOptions) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Replace matching documents in the specified collection, specifying options and return the handler with MongoClientUpdateResult result
replaceObservable(String, JsonObject, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Replace matching documents in the specified collection
replaceWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Deprecated.
replaceWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Replace matching documents in the specified collection, specifying options
replaceWithOptionsObservable(String, JsonObject, JsonObject, UpdateOptions) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Replace matching documents in the specified collection, specifying options
runCommand(String, JsonObject, Handler<AsyncResult<JsonObject>>) - Method in interface io.vertx.ext.mongo.MongoClient
Run an arbitrary MongoDB command.
runCommand(String, JsonObject, Handler<AsyncResult<JsonObject>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Run an arbitrary MongoDB command.
runCommandObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Run an arbitrary MongoDB command.

S

save(String, JsonObject, Handler<AsyncResult<String>>) - Method in interface io.vertx.ext.mongo.MongoClient
Save a document in the specified collection
save(String, JsonObject, Handler<AsyncResult<String>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Save a document in the specified collection
saveObservable(String, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Save a document in the specified collection
saveWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<String>>) - Method in interface io.vertx.ext.mongo.MongoClient
Save a document in the specified collection with the specified write option
saveWithOptions(String, JsonObject, WriteOption, Handler<AsyncResult<String>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Save a document in the specified collection with the specified write option
saveWithOptionsObservable(String, JsonObject, WriteOption) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Save a document in the specified collection with the specified write option
setFields(JsonObject) - Method in class io.vertx.ext.mongo.FindOptions
Set the fields
setLimit(int) - Method in class io.vertx.ext.mongo.FindOptions
Set the limit
setMulti(boolean) - Method in class io.vertx.ext.mongo.UpdateOptions
Set whether multi is enabled
setSkip(int) - Method in class io.vertx.ext.mongo.FindOptions
Set the skip
setSort(JsonObject) - Method in class io.vertx.ext.mongo.FindOptions
Set the sort document
setUpsert(boolean) - Method in class io.vertx.ext.mongo.UpdateOptions
Set whether upsert is enabled
setWriteOption(WriteOption) - Method in class io.vertx.ext.mongo.UpdateOptions
Set the write option

T

toJson() - Method in class io.vertx.ext.mongo.FindOptions
Convert to JSON
toJson() - Method in class io.vertx.ext.mongo.MongoClientDeleteResult
Convert to JSON
toJson() - Method in class io.vertx.ext.mongo.MongoClientUpdateResult
Convert to JSON
toJson() - Method in class io.vertx.ext.mongo.UpdateOptions
 

U

update(String, JsonObject, JsonObject, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Deprecated.
update(String, JsonObject, JsonObject, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Update matching documents in the specified collection
updateCollection(String, JsonObject, JsonObject, Handler<AsyncResult<MongoClientUpdateResult>>) - Method in interface io.vertx.ext.mongo.MongoClient
Update matching documents in the specified collection and return the handler with MongoClientUpdateResult result
updateCollection(String, JsonObject, JsonObject, Handler<AsyncResult<MongoClientUpdateResult>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Update matching documents in the specified collection and return the handler with MongoClientUpdateResult result
updateCollectionObservable(String, JsonObject, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Update matching documents in the specified collection and return the handler with MongoClientUpdateResult result
updateCollectionWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler<AsyncResult<MongoClientUpdateResult>>) - Method in interface io.vertx.ext.mongo.MongoClient
Update matching documents in the specified collection, specifying options and return the handler with MongoClientUpdateResult result
updateCollectionWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler<AsyncResult<MongoClientUpdateResult>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Update matching documents in the specified collection, specifying options and return the handler with MongoClientUpdateResult result
updateCollectionWithOptionsObservable(String, JsonObject, JsonObject, UpdateOptions) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Update matching documents in the specified collection, specifying options and return the handler with MongoClientUpdateResult result
updateObservable(String, JsonObject, JsonObject) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Update matching documents in the specified collection
UpdateOptions - Class in io.vertx.ext.mongo
Options for configuring updates.
UpdateOptions() - Constructor for class io.vertx.ext.mongo.UpdateOptions
Default constructor
UpdateOptions(boolean) - Constructor for class io.vertx.ext.mongo.UpdateOptions
Constructor specify upsert
UpdateOptions(boolean, boolean) - Constructor for class io.vertx.ext.mongo.UpdateOptions
Constructor specify upsert and multu
UpdateOptions(UpdateOptions) - Constructor for class io.vertx.ext.mongo.UpdateOptions
Copy constructor
UpdateOptions(JsonObject) - Constructor for class io.vertx.ext.mongo.UpdateOptions
Constructor from JSON
updateWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler<AsyncResult<Void>>) - Method in interface io.vertx.ext.mongo.MongoClient
Deprecated.
updateWithOptions(String, JsonObject, JsonObject, UpdateOptions, Handler<AsyncResult<Void>>) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Update matching documents in the specified collection, specifying options
updateWithOptionsObservable(String, JsonObject, JsonObject, UpdateOptions) - Method in class io.vertx.rxjava.ext.mongo.MongoClient
Update matching documents in the specified collection, specifying options
UPSERTED_ID - Static variable in class io.vertx.ext.mongo.MongoClientUpdateResult
Constant to be used when storing and retrieving Json for documents upserted id.

V

valueOf(String) - Static method in enum io.vertx.ext.mongo.WriteOption
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.vertx.ext.mongo.WriteOption
Returns an array containing the constants of this enum type, in the order they are declared.

W

WriteOption - Enum in io.vertx.ext.mongo
Enum representing the mongoDB Java Driver's WriteConcern
C D E F G H I M N R S T U V W 
Skip navigation links

Copyright © 2016. All rights reserved.